()
| 292 | return ccrInitialized |
| 293 | }, |
| 294 | getStateLabel() { |
| 295 | // SSETransport doesn't expose its state string; synthesize from |
| 296 | // what we can observe. replBridge only uses this for debug logging. |
| 297 | if (sse.isClosedStatus()) return 'closed' |
| 298 | if (sse.isConnectedStatus()) return ccrInitialized ? 'connected' : 'init' |
| 299 | return 'connecting' |
| 300 | }, |
| 301 | setOnData(cb) { |
| 302 | sse.setOnData(cb) |
| 303 | }, |
nothing calls this directly
no test coverage detected