* Dispose and cleanup
()
| 207 | * Dispose and cleanup |
| 208 | */ |
| 209 | dispose(): void { |
| 210 | this.linkCache.clear(); |
| 211 | this.scannedRows.clear(); |
| 212 | |
| 213 | // Dispose all providers |
| 214 | for (const provider of this.providers) { |
| 215 | provider.dispose?.(); |
| 216 | } |
| 217 | this.providers = []; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | /** |