MCPcopy
hub / github.com/cpaczek/skylight / pruneSticky

Method pruneSticky

server/src/datasource.ts:370–374  ·  view source on GitHub ↗

Drop sticky entries for aircraft long gone (keep the map small).

(now: number)

Source from the content-addressed store, hash-verified

368
369 /** Drop sticky entries for aircraft long gone (keep the map small). */
370 private pruneSticky(now: number): void {
371 for (const [hex, s] of this.sticky) {
372 if (now - s.lastSeen > 600_000) this.sticky.delete(hex);
373 }
374 }
375}

Callers 1

tickMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected