| Package | Description |
|---|---|
| org.springframework.data.cassandra.core |
Apache Cassandra core support.
|
| Modifier and Type | Method and Description |
|---|---|
WriteResult |
CassandraTemplate.delete(Object entity,
QueryOptions options) |
WriteResult |
CassandraOperations.delete(Object entity,
QueryOptions options)
Delete the given entity applying
QueryOptions and return the entity if the delete was applied. |
WriteResult |
CassandraBatchOperations.execute()
Execute the batch.
|
WriteResult |
CassandraTemplate.insert(Object entity,
InsertOptions options) |
WriteResult |
CassandraOperations.insert(Object entity,
InsertOptions options)
Insert the given entity applying
WriteOptions and return the entity if the insert was applied. |
static WriteResult |
WriteResult.of(com.datastax.driver.core.ResultSet resultSet)
Create a
WriteResult from ResultSet. |
WriteResult |
CassandraTemplate.update(Object entity,
UpdateOptions options) |
WriteResult |
CassandraOperations.update(Object entity,
UpdateOptions options)
Update the given entity applying
WriteOptions and return the entity if the update was applied. |
| Modifier and Type | Method and Description |
|---|---|
ListenableFuture<WriteResult> |
AsyncCassandraOperations.delete(Object entity,
QueryOptions options)
Delete the given entity applying
QueryOptions and return the entity if the delete was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraOperations.delete(Object entity,
QueryOptions options)
Delete the given entity applying
QueryOptions and emit the entity if the delete was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraTemplate.delete(Object entity,
QueryOptions options) |
ListenableFuture<WriteResult> |
AsyncCassandraTemplate.delete(Object entity,
QueryOptions options) |
ListenableFuture<WriteResult> |
AsyncCassandraOperations.insert(Object entity,
InsertOptions options)
Insert the given entity applying
WriteOptions and return the entity if the insert was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraOperations.insert(Object entity,
InsertOptions options)
Insert the given entity applying
WriteOptions and emit the entity if the insert was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraTemplate.insert(Object entity,
InsertOptions options) |
ListenableFuture<WriteResult> |
AsyncCassandraTemplate.insert(Object entity,
InsertOptions options) |
ListenableFuture<WriteResult> |
AsyncCassandraOperations.update(Object entity,
UpdateOptions options)
Update the given entity applying
WriteOptions and return the entity if the update was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraOperations.update(Object entity,
UpdateOptions options)
Update the given entity applying
WriteOptions and emit the entity if the update was applied. |
reactor.core.publisher.Mono<WriteResult> |
ReactiveCassandraTemplate.update(Object entity,
UpdateOptions options) |
ListenableFuture<WriteResult> |
AsyncCassandraTemplate.update(Object entity,
UpdateOptions options) |
Copyright © 2011–2018 Pivotal Software, Inc.. All rights reserved.