Expand description
A library with futures-aware mpmc channels.
Structs§
- Receiver
- An async receiver end of an mpmc channel. All receivers connected to the same sender receive the same duplicated message sequence.
- Sender
- An async sender end of an mpmc channel. Messages sent on this are received by all receivers connected to it (they are duplicated).
Constants§
- DEFAULT_
CHANNEL_ BUFFER_ SIZE - The default number of messages that will be buffered per-receiver.