Expand description
A Barrier
that provides wait_timeout
.
This implementation mirrors that of the Rust standard library.
Structsยง
- Barrier ๐A barrier enables multiple threads to synchronize the beginning of some computation.
- Barrier
State ๐ - Barrier
Wait ๐Result ABarrierWaitResult
is returned byBarrier::wait()
when all threads in theBarrier
have rendezvoused.