LinearRetry Class

Definition

Represents a retry policy that performs a specified number of retries, using a specified fixed time interval between retries.

public sealed class LinearRetry : Microsoft.Azure.Storage.RetryPolicies.IExtendedRetryPolicy
type LinearRetry = class
    interface IExtendedRetryPolicy
    interface IRetryPolicy
Public NotInheritable Class LinearRetry
Implements IExtendedRetryPolicy
Inheritance
LinearRetry
Implements

Constructors

LinearRetry()

Initializes a new instance of the LinearRetry class.

LinearRetry(TimeSpan, Int32)

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

Methods

CreateInstance()

Generates a new retry policy for the current request attempt.

Evaluate(RetryContext, OperationContext)

Determines whether the operation should be retried and the interval until the next retry.

ShouldRetry(Int32, Int32, Exception, TimeSpan, OperationContext)

Determines whether the operation should be retried and the interval until the next retry.

Applies to