TestimoX

API Reference

Class

BackoffConfig

Namespace TestimoX.Configuration.Service.Schedule
Assembly TestimoX
Modifiers sealed

Exponential backoff settings used to retry failed runs.

Inheritance

  • Object
  • BackoffConfig

Constructors

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).