feat(oci): Support monolithic OCI blob uploads; add registry cleanup/destroy hooks; update tests and docs

This commit is contained in:
2025-11-20 19:46:34 +00:00
parent eca08604dc
commit 1c63b74bb8
10 changed files with 186 additions and 53 deletions

View File

@@ -115,4 +115,15 @@ export class SmartRegistry {
public isInitialized(): boolean {
return this.initialized;
}
/**
* Clean up resources (timers, connections, etc.)
*/
public destroy(): void {
for (const registry of this.registries.values()) {
if (typeof (registry as any).destroy === 'function') {
(registry as any).destroy();
}
}
}
}