BitWriteFlags Enumeration
Bitwise operation policy write flags.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
[FlagsAttribute]
public enum BitWriteFlags
DEFAULT | 0 |
Default. Allow create or update.
|
CREATE_ONLY | 1 |
If the bin already exists, the operation will be denied.
If the bin does not exist, a new bin will be created.
|
UPDATE_ONLY | 2 |
If the bin already exists, the bin will be overwritten.
If the bin does not exist, the operation will be denied.
|
NO_FAIL | 4 |
Do not raise error if operation is denied.
|
PARTIAL | 8 |
Allow other valid operations to be committed if this operations is
denied due to flag constraints.
|