open class ExponentialBackOff : BackOff
Implementation of BackOff that increases the back off period for each retry attempt. When the interval has reached the Example: The default interval is {@value #DEFAULT_INITIAL_INTERVAL} ms, the default multiplier is {@value #DEFAULT_MULTIPLIER}, and the default max interval is {@value #DEFAULT_MAX_INTERVAL}. For 10 attempts the sequence will be as follows:
Note that the default max elapsed time is |
|
open class FixedBackOff : BackOff
A simple BackOff implementation that provides a fixed interval between two attempts and a maximum number of retries. |