Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

presence.js 434B

1234567
  1. // In-memory live state shared between the HTTP routes and the WebSocket signaling layer.
  2. // NOTE (roadmap): this is the piece that must move to Redis to run multiple instances.
  3. module.exports = {
  4. onlineAgents: new Map(), // machineId -> { ws, machine }
  5. liveSessions: new Map(), // sessionId -> { agentWs, viewerWs, machine, user }
  6. pendingShares: new Map(), // code -> { sharerWs, sessionId } (no-install ad-hoc shares)
  7. };