MCPcopy Create free account
hub / github.com/miguelgrinberg/python-socketio / close_room

Method close_room

src/socketio/async_manager.py:95–100  ·  view source on GitHub ↗

Remove all participants from a room. Note: this method is a coroutine.

(self, room, namespace)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

basic_close_roomMethod · 0.80

Tested by

no test coverage detected