Optionaljitter?: number | nullAdds randomness to the delay to avoid thundering-herd effects.
Set to null to disable jitter.
OptionalmaxDelay?: ITimeSpanUpper bound on the computed delay. The wait time will never exceed this value.
OptionalminDelay?: ITimeSpanStarting delay for the first retry. Subsequent delays grow linearly from this base.
Configuration for the linear backoff policy. The wait time increases linearly with each retry attempt and is capped at
maxDelay. An optionaljitterfactor randomises the delay to spread out concurrent retries.IMPORT_PATH:
"@daiso-tech/core/backoff-policies"