MCPcopy
hub / github.com/chartbrew/chartbrew / emitProgress

Method emitProgress

server/modules/socketManager.js:286–294  ·  view source on GitHub ↗
(conversationId, event, data = {})

Source from the content-addressed store, hash-verified

284
285 // Emit progress events for AI orchestration
286 emitProgress(conversationId, event, data = {}) {
287 if (!this.io) return; // Skip if not initialized
288 const room = `conversation:${conversationId}`;
289 this.io.to(room).emit("ai-progress", {
290 event,
291 data,
292 timestamp: new Date().toISOString()
293 });
294 }
295
296 // Emit to specific user
297 emitToUser(userId, event, data = {}) {

Callers 3

getOrchestrationFunction · 0.80
emitProgressEventFunction · 0.80
orchestrateFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected