Interface AsyncPageableRepository<E,ID>
-
- Type Parameters:
E
- The entity typeID
- The ID type
- All Superinterfaces:
AsyncCrudRepository<E,ID>
,GenericRepository<E,ID>
public interface AsyncPageableRepository<E,ID> extends AsyncCrudRepository<E,ID>
A repository that supports pagination.- Since:
- 3.4.0
- Author:
- Denis Stepanov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<Page<E>>
findAll(Pageable pageable)
Finds all records for the given pageable.java.util.concurrent.CompletableFuture<E>
findAll(Sort sort)
Find all results for the given sort order.-
Methods inherited from interface io.micronaut.data.repository.async.AsyncCrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll
-
-