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

( CassBatchType type )

Creates a new batch statement with batch type.

Parameters:
Name Type Details
in type CassBatchType
Returns:
Type Details
CassBatch *

Returns a batch statement that must be freed.

See Also:
void

cass_batch_free

( CassBatch * batch )

Frees a batch instance. Batches can be immediately freed after being executed.

Parameters:
Name Type Details
in batch CassBatch *
CassError

cass_batch_set_consistency

( CassBatch * batch, CassConsistency consistency )

Sets the batch’s consistency level

Parameters:
Name Type Details
in batch CassBatch *
in consistency CassConsistency

The batch’s write consistency.

Returns:
Type Details
CassError

CASS_OK if successful, otherwise an error occurred.

CassError

cass_batch_set_serial_consistency

( CassBatch * batch, CassConsistency serial_consistency )

Sets the batch’s serial consistency level.

Default: Not set

Parameters:
Name Type Details
in batch CassBatch *
in serial_consistency CassConsistency
Returns:
Type Details
CassError

CASS_OK if successful, otherwise an error occurred.

CassError

cass_batch_set_timestamp

( CassBatch * batch, cass_int64_t timestamp )

Sets the batch’s timestamp.

Parameters:
Name Type Details
in batch CassBatch *
in timestamp cass_int64_t
Returns:
Type Details
CassError

CASS_OK if successful, otherwise an error occurred.

CassError

cass_batch_set_retry_policy

( CassBatch * batch, CassRetryPolicy * retry_policy )

Sets the batch’s retry policy.

Parameters:
Name Type Details
in batch CassBatch *
in retry_policy CassRetryPolicy *
Returns:
Type Details
CassError

CASS_OK if successful, otherwise an error occurred.

CassError

cass_batch_add_statement

( CassBatch * batch, CassStatement * statement )

Adds a statement to a batch.

Parameters:
Name Type Details
in batch CassBatch *
in statement CassStatement *
Returns:
Type Details
CassError

CASS_OK if successful, otherwise an error occurred.