E - The entity typeID - The ID typepublic interface ReactorPageableRepository<E,ID> extends ReactorCrudRepository<E,ID>, ReactiveStreamsPageableRepository<E,ID>
| Modifier and Type | Method and Description | 
|---|---|
| reactor.core.publisher.Mono<Page<E>> | findAll(Pageable pageable)Finds all records for the given pageable. | 
| reactor.core.publisher.Flux<E> | findAll(Sort sort)Find all results for the given sort order. | 
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll@NonNull reactor.core.publisher.Flux<E> findAll(@NonNull Sort sort)
ReactiveStreamsPageableRepositoryfindAll in interface ReactiveStreamsPageableRepository<E,ID>sort - The sort@NonNull reactor.core.publisher.Mono<Page<E>> findAll(@NonNull Pageable pageable)
ReactiveStreamsPageableRepositoryfindAll in interface ReactiveStreamsPageableRepository<E,ID>pageable - The pageable.