(live: LivePipeShellRun, stream: 'stdout' | 'stderr', data: string)
| 979 | } |
| 980 | |
| 981 | private onPipeData(live: LivePipeShellRun, stream: 'stdout' | 'stderr', data: string): void { |
| 982 | if (live.driverExit || live.finalizeOnce) return; |
| 983 | live.collector.accept(stream, data); |
| 984 | live.pendingFlushChars += data.length; |
| 985 | this.emitLivePipeOutput(live, stream, data); |
| 986 | this.scheduleAutomaticFlush(live); |
| 987 | } |
| 988 | |
| 989 | private onPtyData(live: LivePtyShellRun, data: string): void { |
| 990 | if (live.driverExit || live.finalizeOnce) return; |
no test coverage detected