| 39 | const evtPrefix = (runId: string): string => `evt:${runId}:` |
| 40 | |
| 41 | export class DurableObjectRunEventLog implements RunEventLog { |
| 42 | /** Per-run wake-ups for live-tailing readers on THIS instance. */ |
| 43 | private readonly waiters = new Map<string, Set<() => void>>() |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected