This method is called when an asynchronous record is received from the server.
The receive sequence is not ordered.
This method is not thread-safe. Multiple async completion port threads may be calling this listener method simultaneously. All shared data in the callback must be handled in a thread-safe manner.
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 commandFailed() call.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.2.0 (5.3.2)
Syntax
C#
void OnRecord( Key key, Record record )
Parameters
- key
- Type: Aerospike.ClientKey
unique record identifier - record
- Type: Aerospike.ClientRecord
record instance, will be null if the key is not found
Exceptions
Exception | Condition |
---|---|
AerospikeException | if error occurs or scan should be terminated. |
See Also