use threads for websocket example

This commit is contained in:
Nikolay Kim 2017-10-21 02:08:07 -07:00
parent 0bfe07b371
commit 0865071dd7
3 changed files with 23 additions and 4 deletions

View file

@ -17,6 +17,7 @@ Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licen
* Keep-alive and slow requests support
* [WebSockets support](https://fafhrd91.github.io/actix-web/actix_web/ws/index.html)
* [Configurable request routing](https://fafhrd91.github.io/actix-web/actix_web/struct.RoutingMap.html)
* Multipart streams
## Usage
@ -29,6 +30,11 @@ actix-web = { git = "https://github.com/fafhrd91/actix-web.git" }
## Example
* [Mulitpart support](https://github.com/fafhrd91/actix-web/tree/master/examples/multipart)
* [Simple websocket example](https://github.com/fafhrd91/actix-web/tree/master/examples/websocket)
* [Tcp/Websocket chat](https://github.com/fafhrd91/actix-web/tree/master/examples/websocket-chat)
```rust
extern crate actix;
extern crate actix_web;