Expand description
The types of backoff strategies that are supported
Structs§
- Exponential
Backoff - Exponential backoff. The delay will double each time.
- Fixed
Backoff - Fixed backoff. The delay wont change between attempts.
- Linear
Backoff - Linear backoff. The delay will scale linearly with the number of attempts.
- NoBackoff
- No backoff. This will make the future be retried immediately without any delay in between attempts.
Traits§
- Backoff
Strategy - Trait for computing the amount of delay between attempts.