BitOverflowAction Enumeration

Bitwise operation flags for resize.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public enum BitOverflowAction

Members

FAIL0 Fail operation with error.
SATURATE2 If add/subtract overflows/underflows, set to max/min value. Example: MAXINT + 1 = MAXINT
WRAP4 If add/subtract overflows/underflows, wrap the value. Example: MAXINT + 1 = -1

See Also