Crates.io | promissory |
lib.rs | promissory |
version | 0.1.3 |
source | src |
created_at | 2021-03-14 00:32:21.064521 |
updated_at | 2021-03-14 07:53:40.445647 |
description | One-shot value exhange between threads |
homepage | |
repository | |
max_upload_size | |
id | 368548 |
size | 38,051 |
One-shot value exhange between threads. The consumer thread may await the producer thread Both the producer and consumer are single use
Just a wrapper around a std::mpsc channel with an API that makes it impossible to use more than once
let (send, recv) = promissory::promissory();
std::thread::spawn(move || send.fulfill(42u32));
assert_eq!(42, recv.await_value()?;