Drop sticky entries for aircraft long gone (keep the map small).
(now: number)
| 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 | } |