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 ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.addStatement(com.datastax.oss.driver.api.core.cql.BatchableStatement<?> statement) Add astatementto the batch.ReactiveCassandraBatchOperations.addStatement(Mono<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>> statement) Add a Mono ofstatementto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.addStatements(com.datastax.oss.driver.api.core.cql.BatchableStatement<?>... statements) Addstatementsto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.addStatements(Iterable<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>> statements) Addstatementsto the batch.ReactiveCassandraBatchOperations.addStatements(Mono<? extends Iterable<? extends com.datastax.oss.driver.api.core.cql.BatchableStatement<?>>> statements) Add Mono ofstatementsto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraOperations.batchOps()Returns a newReactiveCassandraBatchOperationsusingBatchType.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 givenWriteOptionsto the batch.Add an array of deletes to the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.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 givenWriteOptionsto the batch.Add a collection of inserts to the batch.ReactiveCassandraBatchOperations.insert(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptionsto the batch.Add an array of inserts to the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.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 givenWriteOptionsto the batch.Add a collection of updates to the batch.ReactiveCassandraBatchOperations.update(Iterable<?> entities, WriteOptions options) Add a collection of updates with givenWriteOptionsto the batch.Add an array of updates to the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.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 givenWriteOptionsto the batch.ReactiveCassandraBatchOperations.withQueryOptions(QueryOptions options) Apply givenQueryOptionsto the whole batch statement.ReactiveCassandraBatchOperations.withTimestamp(long timestamp) Apply a giventimestampto the whole batch.