This commit is contained in:
parent
6c8dd95d20
commit
50806b54b7
2 changed files with 6 additions and 4 deletions
|
@ -27,9 +27,11 @@ type DynMsg = Box<dyn Any + Send + Sync + 'static>;
|
|||
type OnConnectHandler = Box<dyn Fn(NodeID, SocketAddr, bool) + Send + Sync>;
|
||||
type OnDisconnectHandler = Box<dyn Fn(NodeID, bool) + Send + Sync>;
|
||||
|
||||
pub(crate) type LocalHandler = Box<dyn Fn(DynMsg) -> Pin<Box<dyn Future<Output = DynMsg> + Sync + Send>> + Sync + Send>;
|
||||
pub(crate) type LocalHandler =
|
||||
Box<dyn Fn(DynMsg) -> Pin<Box<dyn Future<Output = DynMsg> + Sync + Send>> + Sync + Send>;
|
||||
pub(crate) type NetHandler = Box<
|
||||
dyn Fn(NodeID, Bytes) -> Pin<Box<dyn Future<Output = Vec<u8>> + Sync + Send>> + Sync + Send>;
|
||||
dyn Fn(NodeID, Bytes) -> Pin<Box<dyn Future<Output = Vec<u8>> + Sync + Send>> + Sync + Send,
|
||||
>;
|
||||
|
||||
pub(crate) struct Handler {
|
||||
pub(crate) local_handler: LocalHandler,
|
||||
|
@ -132,7 +134,7 @@ impl NetApp {
|
|||
let netapp2 = netapp.clone();
|
||||
netapp.add_msg_handler::<HelloMessage, _, _>(move |from: NodeID, msg: HelloMessage| {
|
||||
netapp2.handle_hello_message(from, msg);
|
||||
async { }
|
||||
async {}
|
||||
});
|
||||
|
||||
netapp
|
||||
|
|
|
@ -290,7 +290,7 @@ impl Basalt {
|
|||
let basalt2 = basalt.clone();
|
||||
netapp.add_msg_handler::<PushMessage, _, _>(move |_from: NodeID, push_msg: PushMessage| {
|
||||
basalt2.handle_peer_list(&push_msg.peers[..]);
|
||||
async move { }
|
||||
async move {}
|
||||
});
|
||||
|
||||
basalt
|
||||
|
|
Loading…
Reference in a new issue