future_handles 0.2.0

A library crate to complete futures via handles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A thread-safe [`CompletableFuture`] and [`CompleteHandle`] implementation.
//!
//! ### Implementation notes
//! Currently utilizes a spin lock to make the internal shared state thread-safe.
//!
/// [`CompletableFuture`]: CompletableFuture
/// [`CompleteHandle`]: CompleteHandle
mod create;
mod scoped;

pub use create::*;
pub use scoped::*;