Expand description
finito provides retry mechanisms to retry async operations.
It’s based off tokio-retry with the difference that it isn’t coupled to any specific async runtime and that it compiles for WASM.
Structs§
- Exponential
Backoff - A retry strategy driven by exponential back-off.
- Fibonacci
Backoff - A retry strategy driven by the fibonacci series.
- Fixed
Interval - A retry strategy driven by a fixed interval.
- Retry
- Future that drives multiple attempts at an action via a retry strategy.
- RetryIf
- Future that drives multiple attempts at an action via a retry strategy. Retries are only attempted if
the
Error
returned by the future satisfies a given condition.