(frame: string)
| 621 | session_id, |
| 622 | lastId, |
| 623 | enqueue(frame: string) { |
| 624 | if (closed) return; |
| 625 | try { |
| 626 | controller.enqueue(enc.encode(frame)); |
| 627 | } catch { |
| 628 | closed = true; |
| 629 | } |
| 630 | }, |
| 631 | close() { |
| 632 | if (closed) return; |
| 633 | closed = true; |
nothing calls this directly
no outgoing calls
no test coverage detected