Interface ReactorPageableRepository<E,ID> 
- Type Parameters:
- E- The entity type
- ID- 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 SummaryMethods inherited from interface io.micronaut.data.repository.reactive.ReactorCrudRepositorycount, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll
- 
Method Details- 
findAllDescription copied from interface:ReactiveStreamsPageableRepositoryFind all results for the given sort order.- Specified by:
- findAllin interface- ReactiveStreamsPageableRepository<E,- ID> 
- Parameters:
- sort- The sort
- Returns:
- The results publisher
 
- 
findAllDescription copied from interface:ReactiveStreamsPageableRepositoryFinds all records for the given pageable.- Specified by:
- findAllin interface- ReactiveStreamsPageableRepository<E,- ID> 
- Parameters:
- pageable- The pageable.
- Returns:
- The results publisher
 
 
-