* Queue an action to be executed after the current stream ends
(action: () => Promise<void>)
| 1301 | * Queue an action to be executed after the current stream ends |
| 1302 | */ |
| 1303 | private queuePostStreamAction(action: () => Promise<void>): void { |
| 1304 | this.postStreamActions.push(action) |
| 1305 | } |
| 1306 | |
| 1307 | /** |
| 1308 | * Drain and execute all queued post-stream actions |
no test coverage detected