()
| 970 | } |
| 971 | } |
| 972 | |
| 973 | cleanup(): void { |
| 974 | this.stopAutoUpdate(); |
| 975 | this.profileCache = null; |
| 976 | this.isUpdating = false; |
| 977 | } |
| 978 | |
| 979 | setup(): void { |
| 980 | // Re-initialize state after cleanup/reload |
| 981 | this.profileCache = null; |
| 982 | this.isUpdating = false; |
| 983 | } |
| 984 | |
| 985 | isSchedulerRunning(): boolean { |
| 986 | return cronManager.has(this.TASK_NAME); |
nothing calls this directly
no test coverage detected