IAsyncClient.Delete(BatchPolicy, BatchDeletePolicy, BatchRecordArrayListener, Key[]) Method

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.

If a key is not found, the corresponding result resultCode will be KEY_NOT_FOUND_ERROR.

Requires server version 6.0+

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
void Delete(
	BatchPolicy batchPolicy,
	BatchDeletePolicy deletePolicy,
	BatchRecordArrayListener listener,
	Key[] keys
)

Parameters

batchPolicy  BatchPolicy
batch configuration parameters, pass in null for defaults
deletePolicy  BatchDeletePolicy
delete configuration parameters, pass in null for defaults
listener  BatchRecordArrayListener
where to send results
keys  Key[]
array of unique record identifiers

Exceptions

AerospikeExceptionif queue is full

See Also