BatchSequenceListenerOnRecord Method

Aerospike
This method is called when an asynchronous batch record is received from the server. The receive sequence is not ordered.

The user may throw a exception 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.

Namespace:  Aerospike.Client
Assembly:  AerospikeClient (in AerospikeClient.dll) Version: 3.9.16.1 (3.9.16.1)
Syntax

C#
void OnRecord(
	BatchRead record
)

Parameters

record
Type: Aerospike.ClientBatchRead
record instances, will be null if the key is not found.
Exceptions

ExceptionCondition
AerospikeExceptionif error occurs or batch should be terminated.
See Also

Reference