(jobId: string)
| 44 | } |
| 45 | |
| 46 | private _stop(jobId: string): void { |
| 47 | const timer = this.activeJobs.get(jobId); |
| 48 | if (timer) { |
| 49 | clearInterval(timer); |
| 50 | this.activeJobs.delete(jobId); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | public dispose(): void { |
| 55 | for (const [id] of this.activeJobs) { |
no test coverage detected