Module backoff::default [−][src]
Constants for the exponential backoff policy.
Constants
INITIAL_INTERVAL_MILLIS | The default initial interval value in milliseconds (0.5 seconds). |
MAX_ELAPSED_TIME_MILLIS | The default maximum elapsed time in milliseconds (15 minutes). |
MAX_INTERVAL_MILLIS | The default maximum back off time in milliseconds (1 minute). |
MULTIPLIER | The default multiplier value (1.5 which is 50% increase per back off). |
RANDOMIZATION_FACTOR | The default randomization factor (0.5 which results in a random period ranging between 50% below and 50% above the retry interval). |