crate async_runtime
├── mod channels: pub
│ ├── mod spmc_broadcast: pub
│ │ ├── struct Receiver: pub
│ │ │ ├── async fn recv: pub
│ │ │ └── fn try_clone: pub
│ │ ├── struct Sender: pub
│ │ │ ├── fn num_of_subscribers: pub
│ │ │ ├── fn send: pub
│ │ │ └── fn subscribe: pub
│ │ ├── fn create_channel: pub
│ │ └── fn create_channel_default: pub
The behavior should be similar to channels in well established crates like
futuresandTokio. If our documentation is not clear, topics for improvement should be reported in https://github.com/qorix-group/inc_orchestrator_internal/issues/148