This website requires JavaScript.
Explore
Help
Sign In
max
/
embassy
Watch
1
Star
0
Fork
0
You've already forked embassy
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
a0f1b0ee01
embassy
/
embassy-util
/
src
/
channel
/
mod.rs
6 lines
66 B
Rust
Raw
Normal View
History
Unescape
Escape
embassy: Refactor module structure to remove kitchen-sink `util`.
2021-09-11 01:53:53 +02:00
//! Async channels
Rename channel to mpmc I've renamed the channel module for the MPMC as mpmc. There was a previous debate about this, but I feel that the strategy here avoids importing `channel::channel`. The change leaves `signal::Signal`, but I think that's ok. It is all a bit subjective of course. The bottom line for me is that I really like the term mpmc - it means something to me and aligns with broader naming e.g. in Tokio.
2022-06-12 07:16:56 +02:00
pub
mod
mpmc
;
Added a pubsub channel implementation
2022-06-16 12:28:12 +02:00
pub
mod
pubsub
;
embassy: Refactor module structure to remove kitchen-sink `util`.
2021-09-11 01:53:53 +02:00
pub
mod
signal
;
Reference in New Issue
Copy Permalink