Uses of Interface
com.azure.core.http.rest.Response
-
Packages that use Response Package Description com.azure.core.http.rest Package containing REST-related APIs.com.azure.core.util Package containing core utility classes.com.azure.core.util.polling Package containing API for long running operations. -
-
Uses of Response in com.azure.core.http.rest
Subinterfaces of Response in com.azure.core.http.rest Modifier and Type Interface Description interfacePagedResponse<T>Response of a REST API that returns page.Classes in com.azure.core.http.rest that implement Response Modifier and Type Class Description classPagedResponseBase<H,T>Represents an HTTP response that contains a list of items deserialized into aPage.classResponseBase<H,T>The response of a REST request.classSimpleResponse<T>REST response with a strongly-typed content specified.classStreamResponseREST response with a streaming content.Constructors in com.azure.core.http.rest with parameters of type Response Constructor Description SimpleResponse(Response<?> response, T value)Creates aSimpleResponsefrom a response and a value. -
Uses of Response in com.azure.core.util
Methods in com.azure.core.util with parameters of type Response Modifier and Type Method Description static <T> Mono<T>FluxUtil. toMono(Response<T> response)Converts the incoming content to Mono. -
Uses of Response in com.azure.core.util.polling
Methods in com.azure.core.util.polling with parameters of type Response Modifier and Type Method Description Mono<Boolean>ChainedPollingStrategy. canPoll(Response<?> initialResponse)Mono<Boolean>DefaultPollingStrategy. canPoll(Response<?> initialResponse)Mono<Boolean>LocationPollingStrategy. canPoll(Response<?> initialResponse)Mono<Boolean>OperationResourcePollingStrategy. canPoll(Response<?> initialResponse)Mono<Boolean>PollingStrategy. canPoll(Response<?> initialResponse)Checks if this strategy is able to handle polling for this long-running operation based on the information in the initial response.Mono<Boolean>StatusCheckPollingStrategy. canPoll(Response<?> initialResponse)Mono<PollResponse<T>>ChainedPollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Parses the initial response into aLongRunningOperationStatus, and stores information useful for polling in thePollingContext.Mono<PollResponse<T>>DefaultPollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Mono<PollResponse<T>>LocationPollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Mono<PollResponse<T>>OperationResourcePollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Mono<PollResponse<T>>PollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Parses the initial response into aLongRunningOperationStatus, and stores information useful for polling in thePollingContext.Mono<PollResponse<T>>StatusCheckPollingStrategy. onInitialResponse(Response<?> response, PollingContext<T> pollingContext, TypeReference<T> pollResponseType)Method parameters in com.azure.core.util.polling with type arguments of type Response Modifier and Type Method Description static <T,U>
PollerFlux<T,U>PollerFlux. create(Duration pollInterval, Supplier<Mono<? extends Response<?>>> initialOperation, PollingStrategy<T,U> strategy, TypeReference<T> pollResponseType, TypeReference<U> resultType)Creates PollerFlux.
-