Remove all participants from a room. Note: this method is a coroutine.
(self, room, namespace)
| 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. |
| 97 | |
| 98 | Note: this method is a coroutine. |
| 99 | """ |
| 100 | return self.basic_close_room(room, namespace) |
| 101 | |
| 102 | async def trigger_callback(self, sid, id, data): |
| 103 | """Invoke an application callback. |
nothing calls this directly
no test coverage detected