Class FixedBackOff
Inheritance
System.Object
FixedBackOff
Assembly: Steeltoe.Common.dll
Syntax
public class FixedBackOff : object, IBackOff
Constructors
|
Edit this page
View Source
FixedBackOff()
Declaration
|
Edit this page
View Source
FixedBackOff(Int32, Int32)
Declaration
public FixedBackOff(int interval, int maxAttempts)
Parameters
Type |
Name |
Description |
System.Int32 |
interval |
|
System.Int32 |
maxAttempts |
|
Fields
|
Edit this page
View Source
DEFAULT_INTERVAL
Declaration
public const int DEFAULT_INTERVAL = null
Field Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
STOP
Declaration
public const int STOP = null
Field Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
UNLIMITED_ATTEMPTS
Declaration
public const int UNLIMITED_ATTEMPTS = null
Field Value
Type |
Description |
System.Int32 |
|
Properties
|
Edit this page
View Source
Interval
Declaration
public int Interval { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
MaxAttempts
Declaration
public int MaxAttempts { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
|
Edit this page
View Source
Start()
Declaration
public IBackOffExecution Start()
Returns
Implements