Interface ReactorPageableRepository<E,ID>
- Type Parameters:
E
- The entity typeID
- The ID type
- All Superinterfaces:
GenericRepository<E,
,ID> ReactiveStreamsCrudRepository<E,
,ID> ReactiveStreamsPageableRepository<E,
,ID> ReactorCrudRepository<E,
ID>
public interface ReactorPageableRepository<E,ID>
extends ReactorCrudRepository<E,ID>, ReactiveStreamsPageableRepository<E,ID>
A repository that supports pagination.
- Since:
- 3.4.0
- Author:
- Denis Stepanov
-
Method Summary
Methods inherited from interface io.micronaut.data.repository.reactive.ReactorCrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll
-
Method Details
-
findAll
Description copied from interface:ReactiveStreamsPageableRepository
Find all results for the given sort order.- Specified by:
findAll
in interfaceReactiveStreamsPageableRepository<E,
ID> - Parameters:
sort
- The sort- Returns:
- The results publisher
-
findAll
Description copied from interface:ReactiveStreamsPageableRepository
Finds all records for the given pageable.- Specified by:
findAll
in interfaceReactiveStreamsPageableRepository<E,
ID> - Parameters:
pageable
- The pageable.- Returns:
- The results publisher
-