| 57 | #[derive(Message)] |
| 58 | #[rtype(result = "()")] |
| 59 | pub struct Join { |
| 60 | /// Client ID |
| 61 | pub id: u64, |
| 62 | |
| 63 | /// Room name |
| 64 | pub name: String, |
| 65 | } |
| 66 | |
| 67 | /// `ChatServer` manages chat rooms and responsible for coordinating chat session. |
| 68 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected