AsyncClientGet(BatchPolicy, RecordSequenceListener, Key, Operation) Method

Asynchronously read multiple records for specified keys using read operations in one batch call. Schedule the batch get command with a channel selector and return. Another thread will process the command and send the results to the listener in multiple unordered calls.

Each record result is returned in separate OnRecord() calls. If a key is not found, the record will be null.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public void Get(
	BatchPolicy policy,
	RecordSequenceListener listener,
	Key[] keys,
	params Operation[] ops
)

Parameters

policy  BatchPolicy
batch configuration parameters, pass in null for defaults
listener  RecordSequenceListener
where to send results
keys  Key
array of unique record identifiers
ops  Operation
array of read operations on record

Implements

IAsyncClientGet(BatchPolicy, RecordSequenceListener, Key, Operation)

Exceptions

AerospikeExceptionif queue is full

See Also