BitWriteFlags Enumeration

Bitwise operation policy write flags.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
[FlagsAttribute]
public enum BitWriteFlags

Members

DEFAULT0 Default. Allow create or update.
CREATE_ONLY1 If the bin already exists, the operation will be denied. If the bin does not exist, a new bin will be created.
UPDATE_ONLY2 If the bin already exists, the bin will be overwritten. If the bin does not exist, the operation will be denied.
NO_FAIL4 Do not raise error if operation is denied.
PARTIAL8 Allow other valid operations to be committed if this operations is denied due to flag constraints.

See Also