Remove a client from a room. Note: this method is a coroutine.
(self, sid, namespace, room)
| 86 | return self.basic_enter_room(sid, namespace, room, eio_sid=eio_sid) |
| 87 | |
| 88 | async def leave_room(self, sid, namespace, room): |
| 89 | """Remove a client from a room. |
| 90 | |
| 91 | Note: this method is a coroutine. |
| 92 | """ |
| 93 | return self.basic_leave_room(sid, namespace, room) |
| 94 | |
| 95 | async def close_room(self, room, namespace): |
| 96 | """Remove all participants from a room. |
nothing calls this directly
no test coverage detected