Interface RxJava3SortingRepository<T,ID>

All Superinterfaces:
Repository<T,ID>

@NoRepositoryBean public interface RxJava3SortingRepository<T,ID> extends 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:
  • Method Summary

    Modifier and Type
    Method
    Description
    io.reactivex.rxjava3.core.Flowable<T>
    findAll(Sort sort)
    Returns all entities sorted by the given options.
  • Method Details

    • findAll

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