IAsyncClient.Operate(WritePolicy, RecordListener, Key, Operation[]) Method
Asynchronously perform multiple read/write operations on a single key in one batch call.
Schedule the operate command with a channel selector and return.
Another thread will process the command and send the results to the listener.
An example would be to add an integer value to an existing record and then
read the result, all in one database call.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
void Operate(
WritePolicy policy,
RecordListener listener,
Key key,
params Operation[] ops
)
Parameters
- policy WritePolicy
- write configuration parameters, pass in null for defaults
- listener RecordListener
- where to send results, pass in null for fire and forget
- key Key
- unique record identifier
- ops Operation[]
- database operations to perform