backon
Retry with backoff without effort.
The opposite backoff implementation of the popular backoff.
- Newer: developed by Rust edition 2021 and latest stable.
- Cleaner: Iterator based abstraction, easy to use, customization friendly.
- Easier: Trait based implementations, works like a native function provided by closures.
Quick Start
Retry a blocking function.
use Result;
use BlockingRetryable;
use ExponentialBuilder;
Retry an async function.
use Result;
use ExponentialBuilder;
use Retryable;
async
async
Contributing
Check out the CONTRIBUTING.md guide for more details on getting started with contributing to this project.
Getting help
Submit issues for bug report or asking questions in discussion.