(&mut self, _: &mut Self::Context)
| 88 | } |
| 89 | |
| 90 | fn stopping(&mut self, _: &mut Self::Context) -> Running { |
| 91 | // notify chat server |
| 92 | self.addr.do_send(server::Disconnect { id: self.id }); |
| 93 | Running::Stop |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /// Handle messages from chat server, we simply send it to peer websocket |
nothing calls this directly
no outgoing calls
no test coverage detected