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.