Interface RxJava3SortingRepository<T,ID>
- All Superinterfaces:
Repository<T,
ID>
Repository fragment to provide methods to retrieve entities using the sorting abstraction. In many cases this
should be combined with
RxJava3CrudRepository
or a similar interface to provide CRUD functionality.- Since:
- 2.4
- Author:
- Mark Paluch, Jens Schauder
- See Also:
-
Sort
Flowable
RxJava3CrudRepository
-
Method Summary
-
Method Details
-
findAll
Returns all entities sorted by the given options.- Parameters:
sort
- theSort
specification to sort the results by, may beSort.unsorted()
, must not be null.- Returns:
- all entities sorted by the given options.
-