#backoff #future #exponential

废弃 backoff-futures

std::future::Future 提供重试和退避机制。已废弃:请参阅 backoff::future

6 个版本

0.3.2 2020年7月14日
0.3.1 2020年7月14日
0.3.0 2020年6月12日
0.2.0 2019年11月27日
0.1.1 2019年8月15日

#21 in #exponential


tokkit 中使用

MIT 许可证

13KB
158

backoff-futures

Build status crates.io docs.rs License: MIT

std::future::Future 提供重试和退避机制。

文档

添加依赖项

手动

[dependencies]
backoff-futures = "0.1"

使用 cargo-edit

cargo add backoff-futures

用法

#![feature(async_await)]

fn isahc_error_to_backoff(err: isahc::Error) -> backoff::Error<isahc::Error> {
    match err {
        isahc::Error::Aborted | isahc::Error::Io(_) | isahc::Error::Timeout =>
            backoff::Error::Transient(err),
        _ =>
            backoff::Error::Permanent(err)
    }
}

async fn get_example_contents() -> Result<String, backoff::Error<isahc::Error>> {
    use isahc::ResponseExt;

    let mut response = isahc::get_async("https://example.org")
        .await
        .map_err(isahc_error_to_backoff)?;

    response
        .text_async()
        .await
        .map_err(|err: std::io::Error| backoff::Error::Transient(isahc::Error::Io(err)))
}

async fn get_example_contents_with_retry() -> Result<String, isahc::Error> {
    use backoff_futures::BackoffExt;

    let mut backoff = backoff::ExponentialBackoff::default();
    get_example_contents.with_backoff(&mut backoff)
        .await
        .map_err(|err| match err {
            backoff::Error::Transient(err) | backoff::Error::Permanent(err) => err
        })
}

许可证

MIT

依赖项

~4.5MB
~77K SLoC