Interface ReactiveSortingRepository<T,ID>
- All Superinterfaces:
Repository<T,
ID>
Repository fragment to provide methods to retrieve entities using the sorting abstraction. In many cases it
should be combined with
ReactiveCrudRepository
or a similar repository interface in order to add CRUD
functionality.- Since:
- 2.0
- Author:
- Mark Paluch, Christoph Strobl, Jens Schauder
- See Also:
-
Sort
Mono
Flux
ReactiveCrudRepository
-
Method Summary
-
Method Details
-
findAll
Returns all entities sorted by the given options.- Parameters:
sort
- theSort
specification to sort the results by, can beSort.unsorted()
, must not be null.- Returns:
- all entities sorted by the given options.
- Throws:
IllegalArgumentException
- in case the givenSort
is null.
-