Apply operations on records that match the 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.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.16.1 (3.9.16.1)
Syntax
C#
ExecuteTask Execute( WritePolicy policy, Statement statement, params Operation[] operations )
Parameters
- policy
- Type: Aerospike.ClientWritePolicy
write configuration parameters, pass in null for defaults - statement
- Type: Aerospike.ClientStatement
record filter. Statement instance is not suitable for reuse since it's modified in this method. - operations
- Type: Aerospike.ClientOperation
list of operations to be performed on selected records
Return Value
Type: ExecuteTaskExceptions
Exception | Condition |
---|---|
AerospikeException | if command fails |
See Also