FixedInterval Class

 

Represents a retry strategy with a specified number of retry attempts and a default, fixed time interval between retries.

Namespace:   Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

System.Object
  Microsoft.WindowsAzure.Common.TransientFaultHandling.RetryStrategy
    Microsoft.WindowsAzure.Common.TransientFaultHandling.FixedInterval

type FixedInterval = 
    class
        inherit RetryStrategy
    end

NameDescription
System_CAPS_pubmethodFixedInterval()

Initializes a new instance of the FixedInterval class.

System_CAPS_pubmethodFixedInterval(Int32)

Initializes a new instance of the FixedInterval class with the specified number of retry attempts.

System_CAPS_pubmethodFixedInterval(Int32, TimeSpan)

Initializes a new instance of the FixedInterval class with the specified number of retry attempts and time interval.

System_CAPS_pubmethodFixedInterval(String, Int32, TimeSpan)

Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, and retry strategy.

System_CAPS_pubmethodFixedInterval(String, Int32, TimeSpan, Boolean)

Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, retry strategy, and fast start option.

NameDescription
System_CAPS_pubpropertyFastFirstRetry

Gets or sets a value indicating whether the first retry attempt will be made immediately, whereas subsequent retries will remain subject to the retry interval.(Inherited from RetryStrategy.)

System_CAPS_pubpropertyName

Gets the name of the retry strategy.(Inherited from RetryStrategy.)

NameDescription
System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetShouldRetry()

Returns the corresponding ShouldRetry delegate.(Overrides RetryStrategy.GetShouldRetry().)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: