Incremental Constructor (String^, Int32, TimeSpan, TimeSpan, Boolean)

 

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

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

public:
Incremental(
	String^ name,
	int retryCount,
	TimeSpan initialInterval,
	TimeSpan increment,
	bool firstFastRetry
)

Parameters

name
Type: System::String^

The retry strategy name.

retryCount
Type: System::Int32

The number of retry attempts.

initialInterval
Type: System::TimeSpan

The initial interval that will apply for the first retry.

increment
Type: System::TimeSpan

The incremental time value that will be used to calculate the progressive delay between retries.

firstFastRetry
Type: System::Boolean

true to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.

Return to top
Show: