暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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