Uses of Class
com.azure.core.http.HttpPipeline
Packages that use HttpPipeline
Package
Description
This package contains interfaces that represent common cross-cutting aspects of functionality offered by libraries
in the Azure SDK for Java.
Package containing HTTP abstractions between the AnnotationParser, RestProxy, and HTTP client.
Package containing REST-related APIs.
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 HttpPipelineModifier and TypeMethodDescriptionHttpTrait.pipeline
(HttpPipeline pipeline) Sets theHttpPipeline
to use for the service client. -
Uses of HttpPipeline in com.azure.core.http
Methods in com.azure.core.http that return HttpPipelineModifier and TypeMethodDescriptionHttpPipelineBuilder.build()
Creates anHttpPipeline
based 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 HttpPipelineModifier and TypeMethodDescriptionstatic <A> A
RestProxy.create
(Class<A> swaggerInterface, HttpPipeline httpPipeline) Create a proxy implementation of the provided Swagger interface.static <A> A
RestProxy.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 HttpPipelineModifierConstructorDescriptionDefaultPollingStrategy
(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.DefaultPollingStrategy
(HttpPipeline httpPipeline, JsonSerializer serializer, Context context) Creates a chained polling strategy with 3 known polling strategies,OperationResourcePollingStrategy
,LocationPollingStrategy
, andStatusCheckPollingStrategy
, in this order, with a custom serializer.DefaultPollingStrategy
(HttpPipeline httpPipeline, String endpoint, JsonSerializer serializer, Context context) 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.LocationPollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer, Context context) Creates an instance of the location polling strategy.LocationPollingStrategy
(HttpPipeline httpPipeline, String endpoint, ObjectSerializer serializer, Context context) 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.OperationResourcePollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer, String operationLocationHeaderName, Context context) Creates an instance of the operation resource polling strategy.OperationResourcePollingStrategy
(HttpPipeline httpPipeline, String endpoint, ObjectSerializer serializer, String operationLocationHeaderName, Context context) Creates an instance of the operation resource polling strategy.SyncDefaultPollingStrategy
(HttpPipeline httpPipeline) Creates a synchronous chained polling strategy with three known polling strategies,SyncOperationResourcePollingStrategy
,SyncLocationPollingStrategy
, andSyncStatusCheckPollingStrategy
, in this order, with a JSON serializer.SyncDefaultPollingStrategy
(HttpPipeline httpPipeline, JsonSerializer serializer) Creates a synchronous chained polling strategy with three known polling strategies,SyncOperationResourcePollingStrategy
,SyncLocationPollingStrategy
, andSyncStatusCheckPollingStrategy
, in this order, with a JSON serializer.SyncDefaultPollingStrategy
(HttpPipeline httpPipeline, JsonSerializer serializer, Context context) Creates a synchronous chained polling strategy with three known polling strategies,SyncOperationResourcePollingStrategy
,SyncLocationPollingStrategy
, andSyncStatusCheckPollingStrategy
, in this order, with a JSON serializer.SyncDefaultPollingStrategy
(HttpPipeline httpPipeline, String endpoint, JsonSerializer serializer, Context context) Creates a synchronous chained polling strategy with three known polling strategies,SyncOperationResourcePollingStrategy
,SyncLocationPollingStrategy
, andSyncStatusCheckPollingStrategy
, in this order, with a JSON serializer.SyncLocationPollingStrategy
(HttpPipeline httpPipeline) Creates an instance of the location polling strategy using a JSON serializer.SyncLocationPollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer) Creates an instance of the location polling strategy.SyncLocationPollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer, Context context) Creates an instance of the location polling strategy.SyncLocationPollingStrategy
(HttpPipeline httpPipeline, String endpoint, ObjectSerializer serializer, Context context) Creates an instance of the location polling strategy.SyncOperationResourcePollingStrategy
(HttpPipeline httpPipeline) Creates an instance of the operation resource polling strategy using a JSON serializer and "Operation-Location" as the header for polling.SyncOperationResourcePollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer, String operationLocationHeaderName) Creates an instance of the operation resource polling strategy.SyncOperationResourcePollingStrategy
(HttpPipeline httpPipeline, ObjectSerializer serializer, String operationLocationHeaderName, Context context) Creates an instance of the operation resource polling strategy.SyncOperationResourcePollingStrategy
(HttpPipeline httpPipeline, String endpoint, ObjectSerializer serializer, String operationLocationHeaderName, Context context) Creates an instance of the operation resource polling strategy.