Enum Jitter
- Namespace
- Kevlar
- Assembly
- Kevlar.dll
Controls randomization applied to built-in retry backoff delays.
public enum Jitter
Fields
Selects each delay uniformly between the initial delay and three times the preceding delay, capped by the configured maximum.
Equal = 1Scales each delay by a uniformly random factor in [0.5, 1.5).
Full = 2Selects a uniformly random delay in [0, the backoff curve's delay).
None = 0Uses the exact delay produced by the backoff curve.