CosmosClientBuilder.WithThrottlingRetryOptions(TimeSpan, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the minimum time to wait between retry and the max number of times to retry on throttled requests.
public Azure.Cosmos.Fluent.CosmosClientBuilder WithThrottlingRetryOptions (TimeSpan maxRetryWaitTimeOnThrottledRequests, int maxRetryAttemptsOnThrottledRequests);
member this.WithThrottlingRetryOptions : TimeSpan * int -> Azure.Cosmos.Fluent.CosmosClientBuilder
Public Function WithThrottlingRetryOptions (maxRetryWaitTimeOnThrottledRequests As TimeSpan, maxRetryAttemptsOnThrottledRequests As Integer) As CosmosClientBuilder
Parameters
- maxRetryWaitTimeOnThrottledRequests
- TimeSpan
The maximum retry time in seconds for the Azure Cosmos DB service. Any interval that is smaller than a second will be ignored.
- maxRetryAttemptsOnThrottledRequests
- Int32
The number specifies the times retry requests for throttled requests.
Returns
The current CosmosClientBuilder.
Applies to
See also
Azure SDK for .NET