dpc on master
Fix build on nightly Merge pull request #159 from pe… (compare)
dpc on master
Update README.md (compare)
dpc
I'm quite sure for sync_channel two instances of broadcast.rs
should be enough
dpc
Also in Receiver
for mpsc there is no need to notify the sender, since senders can never block, as the queue is unbounded.
dpc
broadcast is a way to notify potentially multiple waiters.
dpc
And in sync channel on empty / full fibers will wait for other side to wake them up.
Receiver
uses notify
dpc
I feel like std might have made mistake there ...
dpc
Got to sleep! Take care.
dpc
I haven't anticipated help ☺️
mioco
repo is not a new code, that I was toying with planing to simplify and rewrite
LoopHandle
, which budles the LoopTx
, Poll
and JoinHandle