Overload List
Name | Description | |
---|---|---|
![]() | GetHeader(BatchPolicy, Key ) |
Read multiple record header data for specified keys in one batch call.
The returned records are in positional order with the original key array order.
If a key is not found, the positional record will be null.
(Inherited from IAerospikeClient.)If a batch request to a node fails, the entire batch is cancelled. |
![]() | GetHeader(Policy, Key) |
Read record generation and expiration only for specified key. Bins are not read.
If found, return record instance. If not found, return null.
The policy can be used to specify timeouts.
(Inherited from IAerospikeClient.) |
![]() | GetHeader(BatchPolicy, CancellationToken, Key ) |
Asynchronously read multiple record header data for specified keys in one batch call.
Create listener, call asynchronous batch header get and return task monitor.
If a key is not found, the record will be null. If a batch request to a node fails, the entire batch is cancelled. |
![]() | GetHeader(Policy, CancellationToken, Key) |
Asynchronously read record generation and expiration only for specified key. Bins are not read.
Create listener, call asynchronous get header and return task monitor.
The policy can be used to specify timeouts. |
See Also