()
| 394 | private runningRuns = new Set<string>(); |
| 395 | |
| 396 | constructor() { |
| 397 | super(); |
| 398 | this.timer = setInterval(() => { |
| 399 | this.tickSchedule().catch((error) => console.error("[cy] 定时词云失败:", error)); |
| 400 | }, 30_000); |
| 401 | } |
| 402 | |
| 403 | cleanup(): void { |
| 404 | if (this.timer) clearInterval(this.timer); |
nothing calls this directly
no test coverage detected