diff options
author | Aria <me@aria.rip> | 2023-10-13 14:04:14 +0100 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-10-13 14:04:14 +0100 |
commit | c063f4da42a538138cc3e80a0e1faaf813a13bd2 (patch) | |
tree | 9a927c20c420bfa32eed18aafa319362df706303 /echo | |
parent | e9ae00db22f30fcf0cfa8f7e05232aed46efb39b (diff) |
use global executor and some fixes
Diffstat (limited to 'echo')
-rw-r--r-- | echo/src/main.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/echo/src/main.rs b/echo/src/main.rs index fed0059..424a538 100644 --- a/echo/src/main.rs +++ b/echo/src/main.rs @@ -37,7 +37,11 @@ impl Handler for EchoHandler { EchoHandler { output } } - fn handle(&self, header: MessageHeader, body: Self::Body) -> impl Future<Output = ()> + Send { + fn handle( + &self, + header: MessageHeader, + body: Self::Body, + ) -> impl Future<Output = ()> + Send + '_ { async move { match body { EchoBody::Echo { msg_id, echo } => { |