Create byte "resize" operation.
Server resizes byte[] to byteSize according to resizeFlags.
Server does not return a value.
Example:
- bin = [0b00000001, 0b01000010]
- byteSize = 4
- resizeFlags = 0
- bin result = [0b00000001, 0b01000010, 0b00000000, 0b00000000]
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Operation Resize( BitPolicy policy, string binName, int byteSize, BitResizeFlags resizeFlags )
Parameters
- policy
- Type: Aerospike.ClientBitPolicy
- binName
- Type: SystemString
- byteSize
- Type: SystemInt32
- resizeFlags
- Type: Aerospike.ClientBitResizeFlags
Return Value
Type: OperationSee Also