Asynchronously read multiple records for specified batch keys in one batch call.
This method allows different namespaces/bins to be requested for each key in the batch.
The returned records are located in the same list.
Create listener, call asynchronous batch get and return task monitor.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public Task<List<BatchRead>> Get( BatchPolicy policy, CancellationToken token, List<BatchRead> records )
Parameters
- policy
- Type: Aerospike.ClientBatchPolicy
batch configuration parameters, pass in null for defaults - token
- Type: System.ThreadingCancellationToken
cancellation token - records
- Type: System.Collections.GenericListBatchRead
list of unique record identifiers and the bins to retrieve.
Return Value
Type: TaskListBatchReadImplements
IAsyncClientGet(BatchPolicy, CancellationToken, ListBatchRead)Exceptions
Exception | Condition |
---|---|
AerospikeException | if read fails |
See Also