forked from mirror/async-std
38 lines
767 B
Rust
38 lines
767 B
Rust
//! Asynchronous tasks.
|
|
//!
|
|
//! This module is similar to [`std::thread`], except it uses asynchronous tasks in place of
|
|
//! threads.
|
|
//!
|
|
//! [`std::thread`]: https://doc.rust-lang.org/std/thread/index.html
|
|
//!
|
|
//! # Examples
|
|
//!
|
|
//! Spawn a task and await its result:
|
|
//!
|
|
//! ```
|
|
//! # #![feature(async_await)]
|
|
//! # fn main() { async_std::task::block_on(async {
|
|
//! #
|
|
//! use async_std::task;
|
|
//!
|
|
//! let handle = task::spawn(async {
|
|
//! 1 + 2
|
|
//! });
|
|
//! #
|
|
//! # }) }
|
|
//! ```
|
|
|
|
#[doc(inline)]
|
|
pub use std::task::{Context, Poll, Waker};
|
|
|
|
pub use local::{AccessError, LocalKey};
|
|
pub use pool::{block_on, current, spawn, Builder};
|
|
pub use sleep::sleep;
|
|
pub use task::{JoinHandle, Task, TaskId};
|
|
|
|
mod local;
|
|
mod pool;
|
|
mod sleep;
|
|
mod task;
|
|
|
|
pub(crate) mod blocking;
|