A crate to help retry futures.
```rust use futuresretrypolicies_core::{retry, RetryPolicy}; use std::{ops::ControlFlow, time::Duration};
// 1. Create your retry policy
/// Retries a request n times pub struct Retries(usize);
// 2. Define how your policy behaves
impl RetryPolicy
/// Makes a request, like a HTTP request or gRPC request which you want to retry async fn makerequest() -> Result<(), &'static str> { // make a request # static COUNT: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(0); # if COUNT.fetchadd(1, std::sync::atomic::Ordering::SeqCst) < 2 { Err("fail") } else { Ok(()) } }
async fn main() -> Result<(), &'static str> { // 3. Await the retry with your policy, a sleep function, and your async function. retry(Retries(3), tokio::time::sleep, make_request).await } ```