Expand description
Assorted retry strategies including fixed interval and exponential back-off.
Structs§
- A retry strategy driven by exponential back-off.
- A retry strategy driven by exponential factor back-off. Duration is capped at a maximum value of
u32::MAX millis = 4294967295 ms
~49 days. - A retry strategy driven by the fibonacci series.
- A retry strategy driven by a fixed interval.
- A strategy wrapper with applied max_interval, created by
MaxInterval::max_interval
function.
Traits§
- Wraps a strategy, applying `max_interval``, after which strategy will stop retrying.