Uses of Interface
org.springframework.data.cassandra.core.ReactiveCassandraBatchOperations
Packages that use ReactiveCassandraBatchOperations
-
Uses of ReactiveCassandraBatchOperations in org.springframework.data.cassandra.core
Methods in org.springframework.data.cassandra.core that return ReactiveCassandraBatchOperationsModifier and TypeMethodDescriptiondefault ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.addStatement
(com.datastax.oss.driver.api.core.cql.BatchableStatement<?> statement) Add astatement
to the batch.ReactiveCassandraBatchOperations.addStatement
(Mono<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>> statement) Add a Mono ofstatement
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.addStatements
(com.datastax.oss.driver.api.core.cql.BatchableStatement<?>... statements) Addstatements
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.addStatements
(Iterable<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>> statements) Addstatements
to the batch.ReactiveCassandraBatchOperations.addStatements
(Mono<? extends Iterable<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>>> statements) Add Mono ofstatements
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraOperations.batchOps()
Returns a newReactiveCassandraBatchOperations
usingBatchType.LOGGED
.ReactiveCassandraOperations.batchOps
(com.datastax.oss.driver.api.core.cql.BatchType batchType) Returns a newReactiveCassandraBatchOperations
.ReactiveCassandraTemplate.batchOps
(com.datastax.oss.driver.api.core.cql.BatchType batchType) Add a collection of deletes to the batch.ReactiveCassandraBatchOperations.delete
(Iterable<?> entities, WriteOptions options) Add a collection of deletes with givenWriteOptions
to the batch.Add an array of deletes to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.delete
(Object entity, WriteOptions options) Add delete to the batch.Add a collection of deletes to the batch.ReactiveCassandraBatchOperations.delete
(Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of deletes with givenWriteOptions
to the batch.Add a collection of inserts to the batch.ReactiveCassandraBatchOperations.insert
(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptions
to the batch.Add an array of inserts to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.insert
(Object entity, WriteOptions options) Add an insert to the batch.Add a collection of inserts to the batch.ReactiveCassandraBatchOperations.insert
(Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of inserts with givenWriteOptions
to the batch.Add a collection of updates to the batch.ReactiveCassandraBatchOperations.update
(Iterable<?> entities, WriteOptions options) Add a collection of updates with givenWriteOptions
to the batch.Add an array of updates to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.update
(Object entity, WriteOptions options) Add an update to the batch.Add a collection of updates to the batch.ReactiveCassandraBatchOperations.update
(Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of updates with givenWriteOptions
to the batch.ReactiveCassandraBatchOperations.withQueryOptions
(QueryOptions options) Apply givenQueryOptions
to the whole batch statement.ReactiveCassandraBatchOperations.withTimestamp
(long timestamp) Apply a giventimestamp
to the whole batch.