1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 01:51:23 +02:00

fix guide example

This commit is contained in:
Nikolay Kim
2017-12-26 21:33:23 -08:00
parent 0d21c2da22
commit 5df5cc7374
2 changed files with 10 additions and 4 deletions

View File

@ -21,8 +21,8 @@ impl Actor for Ws {
}
/// Define Handler for ws::Message message
# impl StreamHandler<ws::Message> for WsRoute {}
impl Handler<ws::Message> for WsRoute {
# impl StreamHandler<ws::Message> for Ws {}
impl Handler<ws::Message> for Ws {
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>) -> Response<Self, ws::Message>
{
match msg {
@ -37,7 +37,7 @@ impl Handler<ws::Message> for WsRoute {
fn main() {
Application::new()
.resource("/ws/", |r| r.f(|req| ws::start(req, WS)) // <- register websocket route
.resource("/ws/", |r| r.f(|req| ws::start(req, Ws))) // <- register websocket route
.finish();
}
```