Skip to content

djc/tokio-retry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

107 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tokio-retry

Extensible, asynchronous retry behaviours for the ecosystem of tokio libraries.

Documentation Crates.io Build status

Features

  • Multiple retry strategies:
    • Exponential backoff
    • Fibonacci backoff
    • Fixed interval
  • no_std support
  • Optional support for random jitter (requires the rand feature)

Example

use tokio_retry::Retry;
use tokio_retry::strategy::{ExponentialBackoff, jitter};

async fn action() -> Result<u64, ()> {
    // do some real-world stuff here...
    Err(())
}

#[tokio::main]
async fn main() -> Result<(), ()> {
    let retry_strategy = ExponentialBackoff::from_millis(10)
        .map(jitter) // add jitter to delays
        .take(3);    // limit to 3 retries

    let result = Retry::spawn(retry_strategy, action).await?;

    Ok(())
}

About

Extensible, asynchronous retry behaviours for futures/tokio

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages