Class ResourceManagerThrottlingPolicy
java.lang.Object
com.azure.resourcemanager.resources.fluentcore.policy.ResourceManagerThrottlingPolicy
- All Implemented Interfaces:
com.azure.core.http.policy.HttpPipelinePolicy
public class ResourceManagerThrottlingPolicy
extends Object
implements com.azure.core.http.policy.HttpPipelinePolicy
A Http Pipeline Policy for automatic send throttling rate limit info to a call back function
-
Constructor Summary
ConstructorsConstructorDescriptionResourceManagerThrottlingPolicy(BiConsumer<? super com.azure.core.http.HttpResponse, ? super ResourceManagerThrottlingInfo> callback) Creates the resource manager throttling policy -
Method Summary
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, processSync
-
Constructor Details
-
ResourceManagerThrottlingPolicy
public ResourceManagerThrottlingPolicy(BiConsumer<? super com.azure.core.http.HttpResponse, ? super ResourceManagerThrottlingInfo> callback) Creates the resource manager throttling policy- Parameters:
callback- consume the ResourceManagerThrottlingInfo for every request, it is not a thread-safe method
-
-
Method Details
-
process
public Mono<com.azure.core.http.HttpResponse> process(com.azure.core.http.HttpPipelineCallContext context, com.azure.core.http.HttpPipelineNextPolicy next) Description copied from interface:com.azure.core.http.policy.HttpPipelinePolicyProcesses provided request context and invokes the next policy.- Specified by:
processin interfacecom.azure.core.http.policy.HttpPipelinePolicy- 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.
-