Expand description
This crate provides SharedThread
, a wrapper around
std::thread::JoinHandle
that
lets multiple threads wait on a shared thread and read its output.
For example code, see the SharedThread
example.
Structsยง
- Shared
Thread - A wrapper around
std::thread::JoinHandle
that allows for multiple waiters.