Package com.azure.core.http.policy
Class HttpLoggingPolicy
java.lang.Object
com.azure.core.http.policy.HttpLoggingPolicy
- All Implemented Interfaces:
HttpPipelinePolicy
The pipeline policy that handles logging of HTTP requests and responses.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHttpLoggingPolicy(HttpLogOptions httpLogOptions) Creates an HttpLoggingPolicy with the given log configurations. -
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
-
Field Details
-
RETRY_COUNT_CONTEXT
Key forContextto pass request retry count metadata for logging.- See Also:
-
-
Constructor Details
-
HttpLoggingPolicy
Creates an HttpLoggingPolicy with the given log configurations.- Parameters:
httpLogOptions- The HTTP logging configuration options.
-
-
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.
-