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 from this base.
Optionalmultiplier?: numberBase multiplication factor applied to the delay after each retry attempt. Larger values produce more aggressive growth in wait times.
Configuration for the exponential backoff policy. The wait time grows by
multiplierafter each failed attempt until capped bymaxDelay. An optionaljitterfactor randomises the delay to avoid thundering-herd effects when multiple clients retry simultaneously.IMPORT_PATH:
"@daiso-tech/core/backoff-policies"