PageRetriever<C,P> Interface
Type Parameters
- C
Type of the continuation token.
- P
the page elements type
public interface PageRetriever<C,P>
This class handles retrieving pages.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract Flux<P> |
get(C continuationToken, Integer pageSize)
Retrieves one or more pages starting from the page identified by the given continuation token. |
Method Details
get
public abstract Flux
get(C continuationToken, Integer pageSize)
Retrieves one or more pages starting from the page identified by the given continuation token.
Parameters:
continuationToken
- Token identifying which page to retrieve, passing
null
indicates to retrieve
the first page.
pageSize
- The number of items to retrieve per page, passing
null
will use the source's default
page size.
Returns:
A Flux that emits one or more pages.
Applies to
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.
Azure SDK for Java