Uses of Class
org.springframework.data.cassandra.core.cql.WriteOptions
Packages that use WriteOptions
Package
Description
Apache Cassandra core support.
CQL core support.
-
Uses of WriteOptions in org.springframework.data.cassandra.core
Subclasses of WriteOptions in org.springframework.data.cassandra.coreModifier and TypeClassDescriptionclassExtension toWriteOptionsfor use withDELETEoperations.classExtension toWriteOptionsfor use withINSERToperations.classExtension toWriteOptionsfor use withUPDATEoperations.Methods in org.springframework.data.cassandra.core with parameters of type WriteOptionsModifier and TypeMethodDescriptionCassandraBatchOperations.delete(Iterable<?> entities, WriteOptions options) Add a collection of deletes with givenWriteOptionsto the batch.default CassandraBatchOperationsCassandraBatchOperations.delete(Object entity, WriteOptions options) Add delete to the batch.ReactiveCassandraBatchOperations.delete(Iterable<?> entities, WriteOptions options) Add a collection of deletes with givenWriteOptionsto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.delete(Object entity, WriteOptions options) Add delete to the batch.ReactiveCassandraBatchOperations.delete(reactor.core.publisher.Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of deletes with givenWriteOptionsto the batch.CassandraBatchOperations.insert(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptionsto the batch.default CassandraBatchOperationsCassandraBatchOperations.insert(Object entity, WriteOptions options) Add an insert to the batch.ReactiveCassandraBatchOperations.insert(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptionsto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.insert(Object entity, WriteOptions options) Add an insert to the batch.ReactiveCassandraBatchOperations.insert(reactor.core.publisher.Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of inserts with givenWriteOptionsto the batch.StatementBuilder<com.datastax.oss.driver.api.querybuilder.insert.RegularInsert>StatementFactory.insert(Object objectToInsert, WriteOptions options) Creates a Query Object for an insert.StatementBuilder<com.datastax.oss.driver.api.querybuilder.insert.RegularInsert>StatementFactory.insert(Object objectToInsert, WriteOptions options, CassandraPersistentEntity<?> persistentEntity, com.datastax.oss.driver.api.core.CqlIdentifier tableName) Creates a Query Object for an insert.CassandraBatchOperations.update(Iterable<?> entities, WriteOptions options) Add a collection of updates with givenWriteOptionsto the batch.default CassandraBatchOperationsCassandraBatchOperations.update(Object entity, WriteOptions options) Add an update to the batch.ReactiveCassandraBatchOperations.update(Iterable<?> entities, WriteOptions options) Add a collection of updates with givenWriteOptionsto the batch.default ReactiveCassandraBatchOperationsReactiveCassandraBatchOperations.update(Object entity, WriteOptions options) Add an update to the batch.ReactiveCassandraBatchOperations.update(reactor.core.publisher.Mono<? extends Iterable<?>> entities, WriteOptions options) Add a collection of updates with givenWriteOptionsto the batch.StatementBuilder<com.datastax.oss.driver.api.querybuilder.update.Update>StatementFactory.update(Object objectToUpdate, WriteOptions options) StatementBuilder<com.datastax.oss.driver.api.querybuilder.update.Update>StatementFactory.update(Object objectToUpdate, WriteOptions options, CassandraPersistentEntity<?> entity, com.datastax.oss.driver.api.core.CqlIdentifier tableName) -
Uses of WriteOptions in org.springframework.data.cassandra.core.cql
Methods in org.springframework.data.cassandra.core.cql that return WriteOptionsModifier and TypeMethodDescriptionWriteOptions.WriteOptionsBuilder.build()Builds a newWriteOptionswith the configured values.static WriteOptionsWriteOptions.empty()Create defaultWriteOptions.Methods in org.springframework.data.cassandra.core.cql with parameters of type WriteOptionsModifier and TypeMethodDescriptionstatic com.datastax.oss.driver.api.querybuilder.delete.DeleteQueryOptionsUtil.addWriteOptions(com.datastax.oss.driver.api.querybuilder.delete.Delete delete, WriteOptions writeOptions) Add commonWriteOptionsoptions toDeleteCQL statements.static com.datastax.oss.driver.api.querybuilder.insert.InsertQueryOptionsUtil.addWriteOptions(com.datastax.oss.driver.api.querybuilder.insert.Insert insert, WriteOptions writeOptions) Add commonWriteOptionsoptions toInsertCQL statements.static com.datastax.oss.driver.api.querybuilder.update.UpdateQueryOptionsUtil.addWriteOptions(com.datastax.oss.driver.api.querybuilder.update.Update update, WriteOptions writeOptions) Add commonWriteOptionsoptions toUpdateCQL statements.Constructors in org.springframework.data.cassandra.core.cql with parameters of type WriteOptions