Uses of Interface
com.azure.core.http.rest.PagedResponse
Packages that use PagedResponse
Package
Description
This package contains classes and interfaces that provide RESTful HTTP functionality for Azure SDKs.
Package containing core utility classes.
-
Uses of PagedResponse in com.azure.core.http.rest
Classes in com.azure.core.http.rest with type parameters of type PagedResponseModifier and TypeClassDescriptionclassPagedFluxBase<T,P extends PagedResponse<T>> Deprecated.classPagedIterableBase<T,P extends PagedResponse<T>> This class provides utility to iterate over responses that extendPagedResponseusingStreamandIterableinterfaces.Classes in com.azure.core.http.rest that implement PagedResponseModifier and TypeClassDescriptionclassPagedResponseBase<H,T> Represents an HTTP response that contains a list of items deserialized into aPage.Method parameters in com.azure.core.http.rest with type arguments of type PagedResponseModifier and TypeMethodDescriptionstatic <T> PagedFlux<T> PagedFlux.create(Supplier<PageRetriever<String, PagedResponse<T>>> provider) Creates an instance ofPagedFluxbacked by a Page Retriever Supplier (provider).Constructor parameters in com.azure.core.http.rest with type arguments of type PagedResponseModifierConstructorDescriptionCreates an instance ofPagedFluxthat consists of only a single page with a given element count.PagedFlux(Function<Integer, Mono<PagedResponse<T>>> firstPageRetriever, BiFunction<String, Integer, Mono<PagedResponse<T>>> nextPageRetriever) Creates an instance ofPagedFluxthat is capable of retrieving multiple pages with of a given page size.PagedFlux(Function<Integer, Mono<PagedResponse<T>>> firstPageRetriever, BiFunction<String, Integer, Mono<PagedResponse<T>>> nextPageRetriever) Creates an instance ofPagedFluxthat is capable of retrieving multiple pages with of a given page size.PagedFlux(Supplier<Mono<PagedResponse<T>>> firstPageRetriever) Creates an instance ofPagedFluxthat consists of only a single page.PagedFlux(Supplier<Mono<PagedResponse<T>>> firstPageRetriever, Function<String, Mono<PagedResponse<T>>> nextPageRetriever) Creates an instance ofPagedFlux.PagedFlux(Supplier<Mono<PagedResponse<T>>> firstPageRetriever, Function<String, Mono<PagedResponse<T>>> nextPageRetriever) Creates an instance ofPagedFlux.PagedIterable(Function<Integer, PagedResponse<T>> firstPageRetriever) Creates an instance ofPagedIterablethat consists of only a single page with a given element count.PagedIterable(Function<Integer, PagedResponse<T>> firstPageRetriever, BiFunction<String, Integer, PagedResponse<T>> nextPageRetriever) Creates an instance ofPagedIterablethat is capable of retrieving multiple pages with of a given page size.PagedIterable(Function<Integer, PagedResponse<T>> firstPageRetriever, BiFunction<String, Integer, PagedResponse<T>> nextPageRetriever) Creates an instance ofPagedIterablethat is capable of retrieving multiple pages with of a given page size.PagedIterable(Supplier<PagedResponse<T>> firstPageRetriever) Creates an instance ofPagedIterablethat consists of only a single page.PagedIterable(Supplier<PagedResponse<T>> firstPageRetriever, Function<String, PagedResponse<T>> nextPageRetriever) Creates an instance ofPagedIterable.PagedIterable(Supplier<PagedResponse<T>> firstPageRetriever, Function<String, PagedResponse<T>> nextPageRetriever) Creates an instance ofPagedIterable. -
Uses of PagedResponse in com.azure.core.util
Methods in com.azure.core.util with parameters of type PagedResponseModifier and TypeMethodDescriptionstatic <T> org.reactivestreams.Publisher<T> CoreUtils.extractAndFetch(PagedResponse<T> page, Context context, BiFunction<String, Context, org.reactivestreams.Publisher<T>> content) Deprecated.Use localized implementation.
ContinuablePagedFluxCore.