(telemetry: IProcessTelemetry)
| 39 | constructor(private readonly a: IProgram, private readonly b: IProgram) {} |
| 40 | |
| 41 | public gotTelemetery(telemetry: IProcessTelemetry) { |
| 42 | this.a.gotTelemetery(telemetry); |
| 43 | this.b.gotTelemetery(telemetry); |
| 44 | } |
| 45 | |
| 46 | public async stop(): Promise<IStopMetadata> { |
| 47 | const r = await Promise.all([this.a.stop(), this.b.stop()]); |
nothing calls this directly
no test coverage detected