Bitwise operation flags for resize.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.15.0 (3.9.15)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
FAIL | 0 | Fail operation with error. | |
SATURATE | 2 | If add/subtract overflows/underflows, set to max/min value. Example: MAXINT + 1 = MAXINT | |
WRAP | 4 | If add/subtract overflows/underflows, wrap the value. Example: MAXINT + 1 = -1 |
See Also