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 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.ReactiveCassandraBatchOperations.delete(reactor.core.publisher.Mono<? extends Iterable<?>> entities) Add a collection of deletes to the batch.ReactiveCassandraBatchOperations.delete(reactor.core.publisher.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.ReactiveCassandraBatchOperations.insert(reactor.core.publisher.Mono<? extends Iterable<?>> entities) Add a collection of inserts to the batch.ReactiveCassandraBatchOperations.insert(reactor.core.publisher.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.ReactiveCassandraBatchOperations.update(reactor.core.publisher.Mono<? extends Iterable<?>> entities) Add a collection of updates to the batch.ReactiveCassandraBatchOperations.update(reactor.core.publisher.Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of updates with givenWriteOptionsto the batch.ReactiveCassandraBatchOperations.withTimestamp(long timestamp) Apply a giventimestampto the whole batch.