8 releases

0.1.6 Apr 21, 2020
0.1.5 Mar 3, 2020
0.1.4 Jan 8, 2020
0.1.2 Dec 24, 2019
0.0.0 Sep 13, 2019

#165 in #non-blocking

Download history 162/week @ 2023-11-27 208/week @ 2023-12-04 155/week @ 2023-12-11 196/week @ 2023-12-18 161/week @ 2023-12-25 166/week @ 2024-01-01 109/week @ 2024-01-08 126/week @ 2024-01-15 143/week @ 2024-01-22 104/week @ 2024-01-29 129/week @ 2024-02-05 154/week @ 2024-02-12 174/week @ 2024-02-19 215/week @ 2024-02-26 172/week @ 2024-03-04 76/week @ 2024-03-11

662 downloads per month
Used in 32 crates (4 directly)

MIT license

92KB
955 lines

Tokio Compat

Compatibility layers between tokio 0.2 and legacy versions.

Crates.io Documentation MIT licensed Build Status Discord

Website | Guides | API Docs | Chat

Overview

This crate provides compatibility runtimes that allow running both futures 0.1 futures that use tokio 0.1 runtime services and std::future futures that use tokio 0.2 runtime services.

Examples

Spawning both tokio 0.1 and tokio 0.2 futures:

use futures_01::future::lazy;

tokio_compat::run(lazy(|| {
    // spawn a `futures` 0.1 future using the `spawn` function from the
    // `tokio` 0.1 crate:
    tokio_01::spawn(lazy(|| {
        println!("hello from tokio 0.1!");
        Ok(())
    }));

    // spawn an `async` block future on the same runtime using `tokio`
    // 0.2's `spawn`:
    tokio_02::spawn(async {
        println!("hello from tokio 0.2!");
    });

    Ok(())
}))

Futures on the compat runtime can use timer APIs from both 0.1 and 0.2 versions of tokio:

use std::time::{Duration, Instant};
use futures_01::future::lazy;
use tokio_compat::prelude::*;

tokio_compat::run_std(async {
    // Wait for a `tokio` 0.1 `Delay`...
    let when = Instant::now() + Duration::from_millis(10);
    tokio_01::timer::Delay::new(when)
        // convert the delay future into a `std::future` that we can `await`.
        .compat()
        .await
        .expect("tokio 0.1 timer should work!");
    println!("10 ms have elapsed");

    // Wait for a `tokio` 0.2 `Delay`...
    let when = Instant::now() + Duration::from_millis(20);
    tokio_02::timer::delay(when).await;
    println!("20 ms have elapsed");
});

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~4.5MB
~70K SLoC