JitterKind
type JitterKind = "none" | "full" | "equal" | "decorrelated";Defined in: src/retry/backoff-strategy.ts:49
Supported jitter modes.
none: return the raw delay unchangedfull: uniform random in[0, raw]equal:raw/2 + uniform(0, raw/2)(half fixed, half random)decorrelated:uniform(baseMs, lastDelayMs * 3), capped atmaxMs; falls back tofullon the first retry whenlastDelayMsis unavailable
For jitter outside these modes, implement BackoffStrategy directly.