Resumable client tail — replay from `fromSeq`, then live-tail to terminal.
(
runId: string,
opts?: { fromSeq?: number; signal?: AbortSignal },
)
| 149 | |
| 150 | /** Resumable client tail — replay from `fromSeq`, then live-tail to terminal. */ |
| 151 | attach( |
| 152 | runId: string, |
| 153 | opts?: { fromSeq?: number; signal?: AbortSignal }, |
| 154 | ): AsyncIterable<RunEvent> { |
| 155 | return this.log.read(runId, opts) |
| 156 | } |
| 157 | |
| 158 | /** Current run record, or null if the run is unknown. */ |
| 159 | status(runId: string): Promise<RunRecord | null> { |
no test coverage detected