Module backoff::default

source ·
Expand description

Constants for the exponential backoff policy.

Constants§

  • The default initial interval value in milliseconds (0.5 seconds).
  • The default maximum elapsed time in milliseconds (15 minutes).
  • The default maximum back off time in milliseconds (1 minute).
  • The default multiplier value (1.5 which is 50% increase per back off).
  • The default randomization factor (0.5 which results in a random period ranging between 50% below and 50% above the retry interval).