Expand description
Utilities for working with channels.
Modulesยง
- fallible
- Utilities for graceful channel shutdown handling.
- mpsc
- A multi-producer, single-consumer queue for sending values between asynchronous tasks.
- oneshot
- A one-shot channel is used for sending a single message between
asynchronous tasks. The
channelfunction is used to create aSenderandReceiverhandle pair that form the channel. - ring
- A bounded mpsc channel that drops the oldest item when full instead of applying backpressure.
- tracked
- A channel that tracks message delivery.