Optionaldegree?: numberThe exponent of the polynomial used to calculate the delay: minDelay * attempt^degree.
Higher values produce faster growth in wait times.
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.
Configuration for the polynomial backoff policy. The wait time grows as
minDelay * attempt^degree, clamped tomaxDelay. An optionaljitterfactor randomises the delay to reduce retry collisions.IMPORT_PATH:
"@daiso-tech/core/backoff-policies"