mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-15 08:57:08 +00:00
19 lines
339 B
Rust
19 lines
339 B
Rust
use futures_channel::mpsc::unbounded;
|
|
|
|
#[async_std::test]
|
|
async fn channels() {
|
|
let (sender, mut receiver) = unbounded::<u32>();
|
|
|
|
// drop(sender);
|
|
|
|
match receiver.try_next() {
|
|
Ok(a) => {
|
|
dbg!(a);
|
|
}
|
|
Err(no) => {
|
|
dbg!(no);
|
|
}
|
|
}
|
|
|
|
sender.unbounded_send(1).unwrap();
|
|
}
|