Aerospike
C#
C#
Show/Hide TOC
Bit
Overflow
Action Enumeration
Bitwise operation flags for resize.
Definition
Namespace:
Aerospike.Client
Assembly:
AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
Copy
public
enum
BitOverflowAction
Members
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
Reference
Aerospike.Client Namespace
In This Article
Definition
Members
See Also