(configHandler: ConfigHandler)
| 230 | |
| 231 | // Initialization - load config and attach config listener |
| 232 | private async init(configHandler: ConfigHandler) { |
| 233 | const result = await configHandler.loadConfig(); |
| 234 | await this.handleConfigUpdate(result); |
| 235 | configHandler.onConfigUpdate( |
| 236 | this.handleConfigUpdate.bind(this) as (arg: any) => void, |
| 237 | ); |
| 238 | } |
| 239 | |
| 240 | readonly statuses: Map<string, IndexingStatus> = new Map(); |
| 241 |
no test coverage detected