Crate mulligan
Source pub use backoff::Backoff;
pub use backoff::Exponential;
pub use backoff::Fixed;
pub use backoff::Linear;
pub use jitter::Decorrelated;
pub use jitter::Equal;
pub use jitter::Full;
pub use jitter::Jitter;
pub use jitter::NoJitter;
- backoff
- jitter
- Mulligan
- Not meant to be constructed directly. Use
mulligan::until_ok()
or mulligan::until(...)
to construct.
- until
- Continues retrying the provided future until a custom condition is met.
- until_ok
- Continues retrying the provided future until a successful result is obtained.