IAerospikeClientExecute(WritePolicy, Statement, Operation) Method

Apply operations on records that match the background query statement filter. Records are not returned to the client. This asynchronous server call will return before the command is complete. The user can optionally wait for command completion by using the returned ExecuteTask instance.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
ExecuteTask Execute(
	WritePolicy policy,
	Statement statement,
	params Operation[] operations
)

Parameters

policy  WritePolicy
write configuration parameters, pass in null for defaults
statement  Statement
background query definition
operations  Operation
list of operations to be performed on selected records

Return Value

ExecuteTask

Exceptions

AerospikeExceptionif command fails

See Also