1 | //! Channels |
---|---|
2 | //! |
3 | //! Multi-producer, multi-consumer queues, used for message-based |
4 | //! communication. Can provide a lightweight inter-task synchronisation |
5 | //! mechanism, at the cost of some extra memory. |
6 | |
7 | #[doc(inline)] |
8 | pub use async_channel::*; |
9 |