Uses of Class
org.springframework.data.cassandra.core.WriteResult
Packages that use WriteResult
-
Uses of WriteResult in org.springframework.data.cassandra.core
Subclasses of WriteResult in org.springframework.data.cassandra.coreModifier and TypeClassDescriptionclassThe result of a write operation for an entity.Methods in org.springframework.data.cassandra.core that return WriteResultModifier and TypeMethodDescriptionExecutableDeleteOperation.TerminatingDelete.all()Remove all matching rows.CassandraOperations.delete(Object entity, QueryOptions options) Delete the given entity applyingQueryOptionsand return the entity if the delete statement was applied.default WriteResultCassandraOperations.delete(Object entity, DeleteOptions options) Delete the given entity applyingDeleteOptionsand return the entity if the delete statement was applied.CassandraTemplate.delete(Object entity, QueryOptions options) CassandraBatchOperations.execute()Execute the batch.static WriteResultWriteResult.of(com.datastax.oss.driver.api.core.cql.ResultSet resultSet) Create aWriteResultfromResultSet.Methods in org.springframework.data.cassandra.core that return types with arguments of type WriteResultModifier and TypeMethodDescriptionReactiveDeleteOperation.TerminatingDelete.all()Remove all matching rows.Update all matching rows in the table.AsyncCassandraOperations.delete(Object entity, QueryOptions options) Delete the given entity applyingQueryOptionsand return the entity if the delete statement was applied.default CompletableFuture<WriteResult> AsyncCassandraOperations.delete(Object entity, DeleteOptions options) Delete the given entity applyingDeleteOptionsand return the entity if the delete statement was applied.AsyncCassandraTemplate.delete(Object entity, QueryOptions options) ReactiveCassandraOperations.delete(Object entity, QueryOptions options) Delete the given entity applyingQueryOptionsand emit the entity if the delete statement was applied.default Mono<WriteResult> ReactiveCassandraOperations.delete(Object entity, DeleteOptions options) Delete the given entity applyingQueryOptionsand emit the entity if the delete statement was applied.ReactiveCassandraTemplate.delete(Object entity, QueryOptions options) ReactiveCassandraBatchOperations.execute()Execute the batch.