Click or drag to resize
RecoveryStrategyDelayType Enumeration
Specifies the delay type to use with a transient error recovery strategy.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public enum RecoveryStrategyDelayType
Members
  Member nameValueDescription
Exponential0 Exponential delay: every new retry will be attempted after X^n seconds, where n is the attempt number (so X^1, X^2 etc.) and X is the delay parameter given.
Linear1 Linear delay: every new retry will be attempted after X seconds, where X is the delay parameter given.
Random2 Random delay: every new retry will be attempted after a random number of Y seconds where Y falls in the interval: [1, X], where X is the delay parameter given.
Custom3 Custom delay: every new retry will be attempted after Y seconds, where Y is calculated by a custom method, which receives X, the delay parameter.
See Also