Package com.azure.core.http.policy
Class PortPolicy
java.lang.Object
com.azure.core.http.policy.PortPolicy
- All Implemented Interfaces:
HttpPipelinePolicy
The
PortPolicy class is an implementation of the HttpPipelinePolicy interface. This policy is used
to add a specific port to each HttpRequest.
This class is useful when you need to set a specific port for all requests in a pipeline. It ensures that the port is set correctly for each request.
Code sample:
In this example, a PortPolicy is created with a port of 8080 and an overwrite flag set to true. The
policy can then be added to the pipeline. Once added to the pipeline, all requests will have their port set to 8080
by the PortPolicy.
PortPolicy portPolicy = new PortPolicy(8080, true);
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprocess(HttpPipelineCallContext context, HttpPipelineNextPolicy next) Processes provided request context and invokes the next policy.processSync(HttpPipelineCallContext context, HttpPipelineNextSyncPolicy next) Processes provided request context and invokes the next policy synchronously.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
-
PortPolicy
public PortPolicy(int port, boolean overwrite) Creates a new PortPolicy object.- Parameters:
port- The port to set.overwrite- Whether to overwrite aHttpRequest'sport 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.
-
processSync
Description copied from interface:HttpPipelinePolicyProcesses provided request context and invokes the next policy synchronously.- Specified by:
processSyncin 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.
-