MCPcopy Index your code
hub / github.com/chartbrew/chartbrew / removeFromRoom

Method removeFromRoom

server/modules/socketManager.js:275–283  ·  view source on GitHub ↗
(room, socketId)

Source from the content-addressed store, hash-verified

273 }
274
275 removeFromRoom(room, socketId) {
276 const roomSockets = this.roomConnections.get(room);
277 if (roomSockets) {
278 roomSockets.delete(socketId);
279 if (roomSockets.size === 0) {
280 this.roomConnections.delete(room);
281 }
282 }
283 }
284
285 // Emit progress events for AI orchestration
286 emitProgress(conversationId, event, data = {}) {

Callers 1

Calls 2

getMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected