![]() |
The (key, result, record) for an entry in a batch read. The result is AEROSPIKE_OK if the record is found, AEROSPIKE_ERR_RECORD_NOT_FOUND if the transaction succeeds but the record is not found, or another error code if the transaction fails. The record is NULL if either the transaction failed or the record does not exist. For aerospike_batch_exists() calls the record will never contain bins but will contain metadata (generation and expiration).
Definition at line 82 of file src/include/aerospike/as_batch.h.
#include "as_batch.h"
Data Fields | |
const as_key * | key |
as_record | record |
as_status | result |
const as_key * as_batch_read::key |
The key requested.
Definition at line 87 of file src/include/aerospike/as_batch.h.
as_record as_batch_read::record |
The record for the key requested, NULL if the key was not found.
Definition at line 97 of file src/include/aerospike/as_batch.h.
as_status as_batch_read::result |
The result of the transaction to read this key.
Definition at line 92 of file src/include/aerospike/as_batch.h.