RecordArrayListener Interface

Asynchronous result notifications for batch get commands. The result is sent in a single array.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public interface RecordArrayListener

Methods

OnFailure This method is called when the command fails. The AerospikeException is likely to be AerospikeExceptionBatchRecords which contains results for keys that did complete.
OnSuccess This method is called when the command completes successfully. The returned record array is in positional order with the original key array order.

See Also