struct CassBatch
A group of statements that are executed as a single batch.
Note: Batches are not supported by the binary protocol version 1.
Functions
CassBatch *
cass_batch_new
( type )Creates a new batch statement with batch type.
void
cass_batch_free
( batch )Frees a batch instance. Batches can be immediately freed after being executed.
CassError
cass_batch_set_consistency
( batch, consistency )Sets the batch’s consistency level
CassError
cass_batch_set_serial_consistency
( batch, serial_consistency )Sets the batch’s serial consistency level.
Default: Not set
CassError
cass_batch_set_timestamp
( batch, timestamp )Sets the batch’s timestamp.
CassError
cass_batch_set_retry_policy
( batch, retry_policy )Sets the batch’s retry policy.
CassError
cass_batch_set_custom_payload
( batch, payload )Sets the batch’s custom payload.
CassError
cass_batch_add_statement
( batch, statement )Adds a statement to a batch.