ExponentialRetry Class

Definition

Represents a retry policy that performs a specified number of retries, using an exponential backoff scheme to determine the interval between retries.

public class ExponentialRetry : Microsoft.Azure.Batch.Common.IRetryPolicy
type ExponentialRetry = class
    interface IRetryPolicy
Public Class ExponentialRetry
Implements IRetryPolicy
Inheritance
ExponentialRetry
Implements

Constructors

ExponentialRetry(TimeSpan, Int32, Nullable<TimeSpan>)

Initializes a new instance of the ExponentialRetry class using the specified delta and maximum number of retries.

Properties

DeltaBackoff

Gets the backoff interval between retries, where the resulting backoff is 2^n * deltaBackoff (where n is the number of retries).

MaxBackoff

The maximum duration to wait between retries.

MaximumRetries

Gets the maximum number of retry attempts.

Methods

ShouldRetryAsync(Exception, OperationContext)

Determines if the operation should be retried and how long to wait until the next retry.

Applies to