AsyncClient.Operate(BatchPolicy, BatchWritePolicy, BatchRecordArrayListener, Key[], Operation[]) Method
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.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public void Operate(
BatchPolicy batchPolicy,
BatchWritePolicy writePolicy,
BatchRecordArrayListener listener,
Key[] keys,
params Operation[] ops
)
- batchPolicy BatchPolicy
- batch configuration parameters, pass in null for defaults
- writePolicy BatchWritePolicy
- write configuration parameters, pass in null for defaults
- listener BatchRecordArrayListener
- where to send results
- keys Key[]
- array of unique record identifiers
- ops Operation[]
-
read/write operations to perform. Get() is not allowed because it returns a
variable number of bins and makes it difficult (sometimes impossible) to lineup operations with
results. Instead, use Get(String) for each bin name.
IAsyncClient.Operate(BatchPolicy, BatchWritePolicy, BatchRecordArrayListener, Key[], Operation[])