Operation Class

Database operation definition. The class is used in client's operate() method.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public sealed class Operation
Inheritance
Object    Operation

Constructors

OperationInitializes a new instance of the Operation class

Methods

Add Create integer/double add database operation.
Append Create string append database operation.
Array Create array of operations from varargs. This method can be useful when its important to save identical array pointer references. Using varargs directly always generates new references.
Delete Create delete record database operation.
Get Create read all record bins database operation.
Get(String) Create read bin database operation.
GetHeader Create read record header database operation.
IsWrite 
Prepend Create string prepend database operation.
Put Create set database operation.
Touch Create touch record database operation.

Fields

binName Optional bin name used in operation.
type Type of operation.
value Optional argument to operation.

See Also