ExponentialRetry(TimeSpan, Int32, Nullable<TimeSpan>) Constructor
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.
Initializes a new instance of the ExponentialRetry class using the specified delta and maximum number of retries.
public ExponentialRetry(TimeSpan deltaBackoff, int maxRetries, TimeSpan? maxBackoff = default);
new Microsoft.Azure.Batch.Common.ExponentialRetry : TimeSpan * int * Nullable<TimeSpan> -> Microsoft.Azure.Batch.Common.ExponentialRetry
Public Sub New (deltaBackoff As TimeSpan, maxRetries As Integer, Optional maxBackoff As Nullable(Of TimeSpan) = Nothing)
Parameters
- deltaBackoff
- TimeSpan
The backoff interval between retries, where the resulting backoff is 2^n * deltaBackoff (where n is the number of retries)
- maxRetries
- Int32
The maximum number of retry attempts.
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.
Azure SDK for .NET