@NoRepositoryBean public interface ReactiveCassandraRepository<T,ID> extends ReactiveCrudRepository<T,ID>
Repository interface with reactive support.| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<T> |
findAllById(Iterable<ID> iterable)
Note: Cassandra supports single-field
IN queries only. |
reactor.core.publisher.Flux<T> |
findAllById(org.reactivestreams.Publisher<ID> publisher)
Fetches each row individually.
|
<S extends T> |
insert(Iterable<S> entities)
Inserts the given entities.
|
<S extends T> |
insert(org.reactivestreams.Publisher<S> entities)
Inserts the given a given entities.
|
<S extends T> |
insert(S entity)
Inserts the given entity.
|
count, delete, deleteAll, deleteAll, deleteAll, deleteById, deleteById, existsById, existsById, findAll, findById, findById, save, saveAll, saveAll<S extends T> reactor.core.publisher.Mono<S> insert(S entity)
ReactiveCrudRepository.save(Object) instead to avoid the usage of store-specific API.entity - must not be null.<S extends T> reactor.core.publisher.Flux<S> insert(Iterable<S> entities)
ReactiveCrudRepository.save(Object) instead to avoid the usage of store-specific API.entities - must not be null.<S extends T> reactor.core.publisher.Flux<S> insert(org.reactivestreams.Publisher<S> entities)
ReactiveCrudRepository.save(Object) instead to avoid the usage of store-specific API.entities - must not be null.reactor.core.publisher.Flux<T> findAllById(Iterable<ID> iterable)
IN queries only. Fetches each row individually when using
MapId with multiple components.findAllById in interface ReactiveCrudRepository<T,ID>reactor.core.publisher.Flux<T> findAllById(org.reactivestreams.Publisher<ID> publisher)
findAllById in interface ReactiveCrudRepository<T,ID>Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.