Asynchronous result notifications for batch get commands with variable bins per key.
The results are sent one batch record at a time.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public interface BatchSequenceListener
The BatchSequenceListener type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() | OnFailure |
This method is called when the command fails.
|
![]() | OnRecord |
This method is called when an asynchronous batch record is received from the server.
The receive sequence is not ordered.
The user may throw AerospikeException if the command should be aborted. If any exception is thrown, parallel command threads to other nodes will also be terminated and the exception will be propagated back through the OnFailure() call. |
![]() | OnSuccess |
This method is called when the command completes successfully.
|
See Also