Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. };