(executionId: string)
| 395 | } |
| 396 | |
| 397 | function readMemoryMeta(executionId: string): ExecutionMetaReadResult { |
| 398 | pruneExpiredMemoryStreams() |
| 399 | const stream = memoryExecutionStreams.get(executionId) |
| 400 | if (!stream?.meta) return { status: 'missing' } |
| 401 | return { status: 'found', meta: stream.meta } |
| 402 | } |
| 403 | |
| 404 | function readMemoryEvents(executionId: string, afterEventId: number): ExecutionEventsReadResult { |
| 405 | pruneExpiredMemoryStreams() |
no test coverage detected