@flux-control/effect-modbus-rs
    Preparing search index...

    Interface RetryDelayOptions

    Backoff curve for a single error category.

    The delay before retry n (zero-based) is min(maxDelay, baseDelay * factor ** n), optionally jittered by the policy-level jitter setting.

    Schedule.exponential — The equivalent built-in Effect schedule.

    interface RetryDelayOptions {
        baseDelay?: DurationInput;
        factor?: number;
        maxDelay?: DurationInput;
    }
    Index
    baseDelay?: DurationInput

    Delay before the first retry.

    factor?: number

    Multiplier applied to the delay after each attempt.

    maxDelay?: DurationInput

    Upper bound on the delay, whatever the attempt count.