Expand description
Channel types for CSP-style concurrency.
Channels provide communication between threads via message passing. Objects are deep-copied into the ChannelManager’s block when sent, and deep-copied into the receiver’s context when received.
Structs§
- Channel
Receiver 🔒 - The receiving half of a channel.
- Channel
Receiver 🔒Inner - Channel
Sender 🔒 - The sending half of a channel.
- Channel
Sender 🔒Inner
Functions§
- make_
channel_ 🔒pair - Create a new channel pair with the specified capacity.