Package com.azure.core.util.paging
Interface PageRetriever<C,P>
- Type Parameters:
C- Type of the continuation token.P- the page elements type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
This class handles retrieving pages.
-
Method Summary
-
Method Details
-
get
Retrieves one or more pages starting from the page identified by the given continuation token.- Parameters:
continuationToken- Token identifying which page to retrieve, passingnullindicates to retrieve the first page.pageSize- The number of items to retrieve per page, passingnullwill use the source's default page size.- Returns:
- A
Fluxthat emits one or more pages.
-