Module crossbeam_channel::channel
source ยท Expand description
The channel interface.
Structsยง
- A blocking iterator over messages in a channel.
- A blocking iterator over messages in a channel.
- The receiving side of a channel.
- The sending side of a channel.
- A non-blocking iterator over messages in a channel.
Enumsยง
- ReceiverFlavor ๐Receiver flavors.
- SenderFlavor ๐Sender flavors.
Functionsยง
- Creates a receiver that delivers a message after a certain duration of time.
- Creates a receiver that delivers a message at a certain instant in time.
- Creates a channel of bounded capacity.
- Creates a receiver that never delivers messages.
- read ๐ โReads a message from the channel.
- Creates a receiver that delivers messages periodically.
- Creates a channel of unbounded capacity.
- write ๐ โWrites a message into the channel.