mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 14:27:39 +03:00
Better naming for websockets implementation
This commit is contained in:
parent
b640b49b05
commit
3b2928a391
12 changed files with 168 additions and 134 deletions
|
@ -92,7 +92,7 @@ impl Handler<session::Message> for WsChatSession {
|
|||
}
|
||||
|
||||
/// WebSocket message handler
|
||||
impl StreamHandler<ws::Message, ws::WsError> for WsChatSession {
|
||||
impl StreamHandler<ws::Message, ws::ProtocolError> for WsChatSession {
|
||||
|
||||
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
||||
println!("WEBSOCKET MESSAGE: {:?}", msg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue