Enum Jitter

Namespace
Kevlar
Assembly
Kevlar.dll

Controls randomization applied to built-in retry backoff delays.

public enum Jitter

Fields

Decorrelated = 3

Selects each delay uniformly between the initial delay and three times the preceding delay, capped by the configured maximum.

Equal = 1

Scales each delay by a uniformly random factor in [0.5, 1.5).

Full = 2

Selects a uniformly random delay in [0, the backoff curve's delay).

None = 0

Uses the exact delay produced by the backoff curve.