Module crossbeam_channel::flavors
source ยท Expand description
Channel flavors.
There are six flavors:
at
- Channel that delivers a message after a certain amount of time.array
- Bounded channel based on a preallocated array.list
- Unbounded channel implemented as a linked list.never
- Channel that never delivers messages.tick
- Channel that delivers messages periodically.zero
- Zero-capacity channel.
Modulesยง
- array ๐Bounded channel based on a preallocated array.
- at ๐Channel that delivers a message at a certain moment in time.
- list ๐Unbounded channel implemented as a linked list.
- never ๐Channel that never delivers messages.
- tick ๐Channel that delivers messages periodically.
- zero ๐Zero-capacity channel.