mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-23 00:36:47 +00:00
parent
5c17185464
commit
bfaa9c510c
1 changed files with 3 additions and 4 deletions
|
@ -21,10 +21,7 @@ The order of events "Bob sends message to Alice" and "Alice joins" is determined
|
||||||
# };
|
# };
|
||||||
# use futures::channel::mpsc;
|
# use futures::channel::mpsc;
|
||||||
# use futures::SinkExt;
|
# use futures::SinkExt;
|
||||||
# use std::{
|
# use std::sync::Arc;
|
||||||
# collections::hash_map::{Entry, HashMap},
|
|
||||||
# sync::Arc,
|
|
||||||
# };
|
|
||||||
#
|
#
|
||||||
# type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
# type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
||||||
# type Sender<T> = mpsc::UnboundedSender<T>;
|
# type Sender<T> = mpsc::UnboundedSender<T>;
|
||||||
|
@ -52,6 +49,8 @@ The order of events "Bob sends message to Alice" and "Alice joins" is determined
|
||||||
# })
|
# })
|
||||||
# }
|
# }
|
||||||
#
|
#
|
||||||
|
use std::collections::hash_map::{Entry, HashMap};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
enum Event { // 1
|
enum Event { // 1
|
||||||
NewPeer {
|
NewPeer {
|
||||||
|
|
Loading…
Reference in a new issue