mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
fix guide example
This commit is contained in:
parent
0d21c2da22
commit
5df5cc7374
@ -28,7 +28,13 @@ before_script:
|
|||||||
- export PATH=$PATH:~/.cargo/bin
|
- export PATH=$PATH:~/.cargo/bin
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- USE_SKEPTIC=1 cargo test --features=alpn
|
- |
|
||||||
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2017-12-21" ]]; then
|
||||||
|
USE_SKEPTIC=1 cargo test --features=alpn
|
||||||
|
else
|
||||||
|
cargo test --features=alpn
|
||||||
|
fi
|
||||||
|
|
||||||
- |
|
- |
|
||||||
if [[ "$TRAVIS_RUST_VERSION" == "beta" ]]; then
|
if [[ "$TRAVIS_RUST_VERSION" == "beta" ]]; then
|
||||||
cd examples/diesel && cargo check && cd ../..
|
cd examples/diesel && cargo check && cd ../..
|
||||||
|
@ -21,8 +21,8 @@ impl Actor for Ws {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Define Handler for ws::Message message
|
/// Define Handler for ws::Message message
|
||||||
# impl StreamHandler<ws::Message> for WsRoute {}
|
# impl StreamHandler<ws::Message> for Ws {}
|
||||||
impl Handler<ws::Message> for WsRoute {
|
impl Handler<ws::Message> for Ws {
|
||||||
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>) -> Response<Self, ws::Message>
|
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>) -> Response<Self, ws::Message>
|
||||||
{
|
{
|
||||||
match msg {
|
match msg {
|
||||||
@ -37,7 +37,7 @@ impl Handler<ws::Message> for WsRoute {
|
|||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
Application::new()
|
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();
|
.finish();
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user