Database operation definition. The class is used in client's operate() method.
Inheritance Hierarchy
Aerospike.ClientOperation
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.1.0 (5.3.1)
Syntax
C#
public sealed class Operation
The Operation type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | Operation | Initializes a new instance of the Operation class |
Methods
Name | Description | |
---|---|---|
![]() ![]() | 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
Name | Description | |
---|---|---|
![]() | binName |
Optional bin name used in operation.
|
![]() | type |
Type of operation.
|
![]() | value |
Optional argument to operation.
|
See Also