Package com.azure.core.http.policy
Class ProtocolPolicy
java.lang.Object
com.azure.core.http.policy.ProtocolPolicy
- All Implemented Interfaces:
HttpPipelinePolicy
The pipeline policy that adds a given protocol to each HttpRequest.
-
Constructor Summary
ConstructorsConstructorDescriptionProtocolPolicy(String protocol, boolean overwrite) Creates a new ProtocolPolicy. -
Method Summary
Modifier and TypeMethodDescriptionprocess(HttpPipelineCallContext context, HttpPipelineNextPolicy next) Processes provided request context and invokes the next policy.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.azure.core.http.policy.HttpPipelinePolicy
getPipelinePosition
-
Constructor Details
-
ProtocolPolicy
Creates a new ProtocolPolicy.- Parameters:
protocol- The protocol to set.overwrite- Whether to overwrite a HttpRequest's protocol if it already has one.
-
-
Method Details
-
process
Description copied from interface:HttpPipelinePolicyProcesses provided request context and invokes the next policy.- Specified by:
processin interfaceHttpPipelinePolicy- Parameters:
context- The request context.next- The next policy to invoke.- Returns:
- A publisher that initiates the request upon subscription and emits a response on completion.
-