你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
RequestRetryPolicy Class
- java.
lang. Object - com.
azure. storage. common. policy. RequestRetryPolicy
- com.
Implements
public final class RequestRetryPolicy
implements HttpPipelinePolicy
This is a request policy in an HttpPipeline for retrying a given HTTP request. The request that is retried will be identical each time it is reissued. Retries will try against a secondary if one is specified and the type of operation/error indicates that the secondary can handle the request. Exponential and fixed backoff are supported. The policy must only be used directly when creating a custom pipeline.
Constructor Summary
Constructor | Description |
---|---|
RequestRetryPolicy(RequestRetryOptions requestRetryOptions) |
Constructs the policy using the retry options. |
Method Summary
Modifier and Type | Method and Description |
---|---|
Mono<Http |
process(HttpPipelineCallContext context, HttpPipelineNextPolicy next) |
Http |
processSync(HttpPipelineCallContext context, HttpPipelineNextSyncPolicy next) |
Methods inherited from java.lang.Object
Constructor Details
RequestRetryPolicy
public RequestRetryPolicy(RequestRetryOptions requestRetryOptions)
Constructs the policy using the retry options.
Parameters:
Method Details
process
public Mono
Parameters:
processSync
public HttpResponse processSync(HttpPipelineCallContext context, HttpPipelineNextSyncPolicy next)
Parameters: