Asynchronously delete records for specified keys.
Schedule the delete command with a channel selector and return.
Another thread will process the command and send the results to the listener.
Each record result is returned in separate OnRecord() calls. 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#
public void Delete( BatchPolicy batchPolicy, BatchDeletePolicy deletePolicy, BatchRecordSequenceListener listener, Key[] keys )
Parameters
- batchPolicy
- Type: Aerospike.ClientBatchPolicy
batch configuration parameters, pass in null for defaults - deletePolicy
- Type: Aerospike.ClientBatchDeletePolicy
delete configuration parameters, pass in null for defaults - listener
- Type: Aerospike.ClientBatchRecordSequenceListener
where to send results - keys
- Type: Aerospike.ClientKey
array of unique record identifiers
Implements
IAsyncClientDelete(BatchPolicy, BatchDeletePolicy, BatchRecordSequenceListener, Key)Exceptions
Exception | Condition |
---|---|
AerospikeException | if queue is full |
See Also