Uses of Class
com.azure.core.http.HttpPipeline
-
Packages that use HttpPipeline Package Description com.azure.core.client.traits This package contains interfaces that represent common cross-cutting aspects of functionality offered by libraries in the Azure SDK for Java.com.azure.core.http Package containing HTTP abstractions between the AnnotationParser, RestProxy, and HTTP client.com.azure.core.http.rest Package containing REST-related APIs.com.azure.core.util.polling Package containing API for long running operations. -
-
Uses of HttpPipeline in com.azure.core.client.traits
Methods in com.azure.core.client.traits with parameters of type HttpPipeline Modifier and Type Method Description THttpTrait. pipeline(HttpPipeline pipeline)Sets theHttpPipelineto use for the service client. -
Uses of HttpPipeline in com.azure.core.http
Methods in com.azure.core.http that return HttpPipeline Modifier and Type Method Description HttpPipelineHttpPipelineBuilder. build()Creates anHttpPipelinebased on options set in the builder. -
Uses of HttpPipeline in com.azure.core.http.rest
Methods in com.azure.core.http.rest with parameters of type HttpPipeline Modifier and Type Method Description static <A> ARestProxy. create(Class<A> swaggerInterface, HttpPipeline httpPipeline)Create a proxy implementation of the provided Swagger interface.static <A> ARestProxy. create(Class<A> swaggerInterface, HttpPipeline httpPipeline, SerializerAdapter serializer)Create a proxy implementation of the provided Swagger interface. -
Uses of HttpPipeline in com.azure.core.util.polling
Constructors in com.azure.core.util.polling with parameters of type HttpPipeline Constructor Description DefaultPollingStrategy(HttpPipeline httpPipeline)Creates a chained polling strategy with 3 known polling strategies,OperationResourcePollingStrategy,LocationPollingStrategy, andStatusCheckPollingStrategy, in this order, with a JSON serializer.DefaultPollingStrategy(HttpPipeline httpPipeline, JsonSerializer serializer)Creates a chained polling strategy with 3 known polling strategies,OperationResourcePollingStrategy,LocationPollingStrategy, andStatusCheckPollingStrategy, in this order, with a custom serializer.LocationPollingStrategy(HttpPipeline httpPipeline)Creates an instance of the location polling strategy using a JSON serializer.LocationPollingStrategy(HttpPipeline httpPipeline, ObjectSerializer serializer)Creates an instance of the location polling strategy.OperationResourcePollingStrategy(HttpPipeline httpPipeline)Creates an instance of the operation resource polling strategy using a JSON serializer and "Operation-Location" as the header for polling.OperationResourcePollingStrategy(HttpPipeline httpPipeline, ObjectSerializer serializer, String operationLocationHeaderName)Creates an instance of the operation resource polling strategy.
-