API Reference
Class
BackoffConfig
Exponential backoff settings used to retry failed runs.
Inheritance
- Object
- BackoffConfig
Constructors
public BackoffConfig() #Inherited Methods
Properties
public Boolean Enabled { get; set; } #Enable or disable retry behavior.
public Int32 MaxRetries { get; set; } #Total number of retries after the initial attempt.
public Int32 InitialDelaySeconds { get; set; } #Initial delay before the first retry (seconds).
public Double Multiplier { get; set; } #Multiplier applied to the delay on each subsequent retry.
public Int32 MaxDelaySeconds { get; set; } #Upper bound for the retry delay (seconds).