C - Type of the continuation token.P - the page elements type@FunctionalInterface public interface PageRetriever<C,P>
| Modifier and Type | Method and Description |
|---|---|
Flux<P> |
get(C continuationToken,
Integer pageSize)
Retrieves one or more pages starting from the page identified by the given continuation token.
|
Flux<P> get(C continuationToken, Integer pageSize)
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.Flux that emits one or more pages.Copyright © 2020 Microsoft Corporation. All rights reserved.