()
| 348 | const memoryExecutionStreams = new Map<string, MemoryExecutionStream>() |
| 349 | |
| 350 | function canUseMemoryEventBuffer(): boolean { |
| 351 | return typeof window === 'undefined' && !env.REDIS_URL |
| 352 | } |
| 353 | |
| 354 | function pruneExpiredMemoryStreams(now = Date.now()): void { |
| 355 | for (const [executionId, stream] of memoryExecutionStreams) { |
no outgoing calls
no test coverage detected