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 TypeClassDescriptionclass
Extension toWriteOptions
for use withDELETE
operations.class
Extension toWriteOptions
for use withINSERT
operations.class
Extension toWriteOptions
for use withUPDATE
operations.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 givenWriteOptions
to the batch.default CassandraBatchOperations
CassandraBatchOperations.delete
(Object entity, WriteOptions options) Add delete to the batch.ReactiveCassandraBatchOperations.delete
(Iterable<?> entities, WriteOptions options) Add a collection of deletes with givenWriteOptions
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.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 givenWriteOptions
to the batch.CassandraBatchOperations.insert
(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptions
to the batch.default CassandraBatchOperations
CassandraBatchOperations.insert
(Object entity, WriteOptions options) Add an insert to the batch.ReactiveCassandraBatchOperations.insert
(Iterable<?> entities, WriteOptions options) Add a collection of inserts with givenWriteOptions
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.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 givenWriteOptions
to 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 givenWriteOptions
to the batch.default CassandraBatchOperations
CassandraBatchOperations.update
(Object entity, WriteOptions options) Add an update to the batch.ReactiveCassandraBatchOperations.update
(Iterable<?> entities, WriteOptions options) Add a collection of updates with givenWriteOptions
to the batch.default ReactiveCassandraBatchOperations
ReactiveCassandraBatchOperations.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 givenWriteOptions
to 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 newWriteOptions
with the configured values.static WriteOptions
WriteOptions.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.Delete
QueryOptionsUtil.addWriteOptions
(com.datastax.oss.driver.api.querybuilder.delete.Delete delete, WriteOptions writeOptions) Add commonWriteOptions
options toDelete
CQL statements.static com.datastax.oss.driver.api.querybuilder.insert.Insert
QueryOptionsUtil.addWriteOptions
(com.datastax.oss.driver.api.querybuilder.insert.Insert insert, WriteOptions writeOptions) Add commonWriteOptions
options toInsert
CQL statements.static com.datastax.oss.driver.api.querybuilder.update.Update
QueryOptionsUtil.addWriteOptions
(com.datastax.oss.driver.api.querybuilder.update.Update update, WriteOptions writeOptions) Add commonWriteOptions
options toUpdate
CQL statements.static <T> T
QueryOptionsUtil.addWriteOptions
(QueryOptionsUtil.CqlStatementOptionsAccessor<T> accessor, WriteOptions writeOptions) Add commonWriteOptions
options to CQL statements throughQueryOptionsUtil.CqlStatementOptionsAccessor
.Constructors in org.springframework.data.cassandra.core.cql with parameters of type WriteOptions