4 releases

0.2.0 Jan 4, 2021
0.1.2 Oct 23, 2020
0.1.1 Oct 19, 2020
0.1.0 Oct 15, 2020

#1429 in Asynchronous

Download history 697/week @ 2023-12-01 1083/week @ 2023-12-08 697/week @ 2023-12-15 503/week @ 2023-12-22 500/week @ 2023-12-29 761/week @ 2024-01-05 865/week @ 2024-01-12 902/week @ 2024-01-19 1238/week @ 2024-01-26 1045/week @ 2024-02-02 713/week @ 2024-02-09 966/week @ 2024-02-16 1053/week @ 2024-02-23 839/week @ 2024-03-01 1030/week @ 2024-03-08 803/week @ 2024-03-15

3,945 downloads per month
Used in fewer than 11 crates

MIT license

15KB
199 lines

Tokio Compat 0.2

tokio-compat-02 = "0.2"

This crate includes utilities around integrating Tokio with other runtimes by allowing the context to be attached to futures. This allows spawning futures on other executors while still using Tokio to drive them. This can be useful if you need to use a Tokio based library in an executor/runtime that does not provide a Tokio context.

Be aware that the .compat() region allows you to use both Tokio 0.2 and 1 features. It is not the case that you opt-out of Tokio 1 when you are inside a Tokio 0.2 compatibility region.

Basic usage:

use hyper::{Client, Uri};
use tokio_compat_02::FutureExt;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = Client::new();

    // This will not panic because we are wrapping it in the
    // Tokio 0.2 context via the `FutureExt::compat` fn.
    client
        .get(Uri::from_static("http://tokio.rs"))
        .compat()
        .await?;

    Ok(())
}

Usage on async function:

use hyper::{Client, Uri};
use tokio_compat_02::FutureExt;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // By calling compat on the async function, everything inside it is able
    // to use Tokio 0.2 features.
    hyper_get().compat().await?;
    Ok(())
}

async fn hyper_get() -> Result<(), Box<dyn std::error::Error>> {
    let client = Client::new();

    // This will not panic because the `main` function wrapped it in the
    // Tokio 0.2 context.
    client
        .get(Uri::from_static("http://tokio.rs"))
        .await?;

    Ok(())
}

Be aware that the constructors of some type require being inside the context. For example, this includes TcpStream and delay_for.

use tokio_02::time::delay_for;
use tokio_compat_02::FutureExt;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let duration = std::time::Duration::from_secs(1);

    // Call the non-async constructor in the context.
    let time_future = async { delay_for(duration) }.compat().await;

    // Use the constructed `Delay`.
    time_future.compat().await;

    Ok(())
}

Of course the above would also work if the surrounding async function was called with .compat().

Dependencies

~4MB
~62K SLoC