AsyncClient.Operate(BatchPolicy, CancellationToken, List<BatchRecord>) Method

Asynchronously read/write multiple records for specified batch keys in one batch call. Create listener, call asynchronous delete and return task monitor.

Requires server version 6.0+

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
public Task<bool> Operate(
	BatchPolicy policy,
	CancellationToken token,
	List<BatchRecord> records
)

Parameters

policy  BatchPolicy
batch configuration parameters, pass in null for defaults
token  CancellationToken
cancellation token
records  List<BatchRecord>
list of unique record identifiers and read/write operations

Return Value

Task<Boolean>
Task with completion status: true if all batch sub-transactions were successful.

Implements

IAsyncClient.Operate(BatchPolicy, CancellationToken, List<BatchRecord>)

Exceptions

AerospikeExceptionif queue is full

See Also