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