(update: IndexingStatus)
| 240 | readonly statuses: Map<string, IndexingStatus> = new Map(); |
| 241 | |
| 242 | handleStatusUpdate(update: IndexingStatus) { |
| 243 | this.statuses.set(update.id, update); |
| 244 | this.messenger?.send("indexing/statusUpdate", update); |
| 245 | } |
| 246 | |
| 247 | // A way for gui to retrieve initial statuses |
| 248 | async initStatuses(): Promise<void> { |
no test coverage detected