Interface RxJava3SortingRepository<T,ID>

All Superinterfaces:
Repository<T,ID>, RxJava3CrudRepository<T,ID>

@NoRepositoryBean public interface RxJava3SortingRepository<T,ID> extends RxJava3CrudRepository<T,ID>
Extension of RxJava3CrudRepository to provide additional methods to retrieve entities using the sorting abstraction.
Since:
2.4
Author:
Mark Paluch
See Also:
  • Method Details

    • findAll

      io.reactivex.rxjava3.core.Flowable<T> findAll(Sort sort)
      Returns all entities sorted by the given options.
      Parameters:
      sort - must not be null.
      Returns:
      all entities sorted by the given options.