Asynchronously perform read/write operations on multiple keys.
Schedule command with a channel selector and return. Another thread will process the
command and send the results to the listener in a single call.
If a key is not found, the corresponding result resultCode will be KEY_NOT_FOUND_ERROR.
Requires server version 6.0+
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
void Operate( BatchPolicy batchPolicy, BatchWritePolicy writePolicy, BatchRecordArrayListener listener, Key[] keys, params Operation[] ops )
Parameters
- batchPolicy
- Type: Aerospike.ClientBatchPolicy
batch configuration parameters, pass in null for defaults - writePolicy
- Type: Aerospike.ClientBatchWritePolicy
write configuration parameters, pass in null for defaults - listener
- Type: Aerospike.ClientBatchRecordArrayListener
where to send results - keys
- Type: Aerospike.ClientKey
array of unique record identifiers - ops
- Type: Aerospike.ClientOperation
array of read/write operations on record
Exceptions
Exception | Condition |
---|---|
AerospikeException | if queue is full |
See Also