(envId, sessionId)
| 122 | return api.registerBridgeEnvironment(config) |
| 123 | }, |
| 124 | async reconnectSession(envId, sessionId) { |
| 125 | const f = consume('reconnectSession') |
| 126 | if (f) throwFault(f, 'ReconnectSession') |
| 127 | return api.reconnectSession(envId, sessionId) |
| 128 | }, |
| 129 | async heartbeatWork(envId, workId, token) { |
| 130 | const f = consume('heartbeatWork') |
| 131 | if (f) throwFault(f, 'Heartbeat') |
nothing calls this directly
no test coverage detected