2 unstable releases
new 0.2.0 | Jun 15, 2025 |
---|---|
0.1.0 | May 2, 2025 |
#321 in Concurrency
22,461 downloads per month
Used in 28 crates
(via duct)
18KB
210 lines
This crate provides SharedThread
, a wrapper around
std::thread::JoinHandle
that
lets multiple threads wait on a shared thread and read its output, with an optional timeout.
For example code, see the SharedThread
example.
shared_thread.rs

This crate provides SharedThread
, a wrapper around
std::thread::JoinHandle
that lets multiple threads wait on a shared thread and read its output.