(
private readonly sessionId: string,
private readonly orgUuid: string,
private readonly getAccessToken: () => string,
private readonly callbacks: SessionsWebSocketCallbacks,
)
| 88 | private reconnectTimer: NodeJS.Timeout | null = null |
| 89 | |
| 90 | constructor( |
| 91 | private readonly sessionId: string, |
| 92 | private readonly orgUuid: string, |
| 93 | private readonly getAccessToken: () => string, |
| 94 | private readonly callbacks: SessionsWebSocketCallbacks, |
| 95 | ) {} |
| 96 | |
| 97 | /** |
| 98 | * Connect to the sessions WebSocket endpoint |
nothing calls this directly
no outgoing calls
no test coverage detected