Package com.azure.core.util.paging
Interface PageRetrieverSync<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 page synchronously.
-
Method Summary
-
Method Details
-
getPage
Retrieves one 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 page of elements type
.
-