MCPcopy Create free account
hub / github.com/ReAPI-com/mcp-openapi / startCleanupTimer

Method startCleanupTimer

src/core/Cache.ts:28–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26 }
27
28 private startCleanupTimer(): void {
29 if (this.cleanupTimer) {
30 return;
31 }
32 this.cleanupTimer = setInterval(() => {
33 this.cleanup();
34 }, this.cleanupInterval);
35 }
36
37 private stopCleanupTimer(): void {
38 if (this.cleanupTimer) {

Callers 1

constructorMethod · 0.95

Calls 1

cleanupMethod · 0.95

Tested by

no test coverage detected