Method
sendSubscribe
(sessionIds: string[], cursors: Record<string, SessionCursor>)
Source from the content-addressed store, hash-verified
| 423 | } |
| 424 | |
| 425 | private sendSubscribe(sessionIds: string[], cursors: Record<string, SessionCursor>): void { |
| 426 | this.send({ |
| 427 | type: 'subscribe', |
| 428 | id: this.nextId(), |
| 429 | payload: { |
| 430 | session_ids: sessionIds, |
| 431 | cursors, |
| 432 | }, |
| 433 | }); |
| 434 | } |
| 435 | |
| 436 | private sendTerminalAttach(sessionId: string, terminalId: string, sinceSeq: number): void { |
| 437 | this.send({ |
Tested by
no test coverage detected