FixedInterval Class
- java.
lang. Object - RetryStrategy
- com.
microsoft. azure. elasticdb. core. commons. transientfaulthandling. FixedInterval
- com.
public class FixedInterval extends RetryStrategy
Represents a retry strategy with a specified number of retry attempts and a default, fixed time interval between retries.
Constructor Summary
Constructor | Description |
---|---|
FixedInterval() |
Initializes a new instance of the FixedInterval class. |
FixedInterval(int retryCount) |
Initializes a new instance of the FixedInterval class with the specified number of retry attempts. |
FixedInterval(int retryCount, Duration retryInterval) |
Initializes a new instance of the FixedInterval class with the specified number of retry attempts and time interval. |
FixedInterval(String name, int retryCount, Duration retryInterval) |
Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, and retry strategy. |
FixedInterval(String name, int retryCount, Duration retryInterval, boolean firstFastRetry) |
Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, retry strategy, and fast start option. |
Method Summary
Modifier and Type | Method and Description |
---|---|
Should |
getShouldRetry()
Returns the corresponding ShouldRetry delegate. |
Inherited Members
Constructor Details
FixedInterval
public FixedInterval()
Initializes a new instance of the FixedInterval class.
FixedInterval
public FixedInterval(int retryCount)
Initializes a new instance of the FixedInterval class with the specified number of retry attempts.
Parameters:
FixedInterval
public FixedInterval(int retryCount, Duration retryInterval)
Initializes a new instance of the FixedInterval class with the specified number of retry attempts and time interval.
Parameters:
FixedInterval
public FixedInterval(String name, int retryCount, Duration retryInterval)
Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, and retry strategy.
Parameters:
FixedInterval
public FixedInterval(String name, int retryCount, Duration retryInterval, boolean firstFastRetry)
Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, retry strategy, and fast start option.
Parameters:
Method Details
getShouldRetry
public ShouldRetry getShouldRetry()
Returns the corresponding ShouldRetry delegate.
Returns:
Applies to
Azure SDK for Java