1//! Tools for working with tasks.
2//!
3//! This module contains:
4//!
5//! - [`Spawn`], a trait for spawning new tasks.
6//! - [`Context`], a context of an asynchronous task,
7//! including a handle for waking up the task.
8//! - [`Waker`], a handle for waking up a task.
9//!
10//! The remaining types and traits in the module are used for implementing
11//! executors or dealing with synchronization issues around task wakeup.
1213#[doc(no_inline)]
14pub use core::task::{Context, Poll, RawWaker, RawWakerVTable, Waker};
1516pub use futures_task::{FutureObj, LocalFutureObj, LocalSpawn, Spawn, SpawnError, UnsafeFutureObj};
1718pub use futures_task::noop_waker;
19pub use futures_task::noop_waker_ref;
2021#[cfg_attr(target_os = "none", cfg(target_has_atomic = "ptr"))]
22#[cfg(feature = "alloc")]
23pub use futures_task::ArcWake;
2425#[cfg_attr(target_os = "none", cfg(target_has_atomic = "ptr"))]
26#[cfg(feature = "alloc")]
27pub use futures_task::waker;
2829#[cfg_attr(target_os = "none", cfg(target_has_atomic = "ptr"))]
30#[cfg(feature = "alloc")]
31pub use futures_task::{waker_ref, WakerRef};
3233#[cfg_attr(
34 target_os = "none",
35 cfg(any(target_has_atomic = "ptr", feature = "portable-atomic"))
36)]
37pub use futures_core::task::__internal::AtomicWaker;
3839mod spawn;
40pub use self::spawn::{LocalSpawnExt, SpawnExt};