Uses of Class
org.springframework.data.cassandra.core.cql.WriteOptions
Package
Description
Apache Cassandra core support.
CQL core support.
-
Uses of WriteOptions in org.springframework.data.cassandra.core
Modifier and TypeClassDescriptionclass
Extension toWriteOptions
for use withDELETE
operations.class
Extension toWriteOptions
for use withINSERT
operations.class
Extension toWriteOptions
for use withUPDATE
operations.Modifier 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
Modifier and TypeMethodDescriptionWriteOptions.WriteOptionsBuilder.build()
Builds a newWriteOptions
with the configured values.static WriteOptions
WriteOptions.empty()
Create defaultWriteOptions
.Modifier 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
.