mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
use threads for websocket example
This commit is contained in:
parent
0bfe07b371
commit
0865071dd7
3 changed files with 23 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue