Enrichment we've resolved for an aircraft, kept sticky for its session.
| 130 | |
| 131 | /** Enrichment we've resolved for an aircraft, kept sticky for its session. */ |
| 132 | interface StickyEnrichment { |
| 133 | typeName?: string; |
| 134 | airline?: string; |
| 135 | origin?: string; |
| 136 | destination?: string; |
| 137 | registration?: string; |
| 138 | originName?: string; |
| 139 | destName?: string; |
| 140 | originLat?: number; |
| 141 | originLon?: number; |
| 142 | destLat?: number; |
| 143 | destLon?: number; |
| 144 | lastSeen: number; |
| 145 | } |
| 146 | |
| 147 | export class Poller { |
| 148 | private timer: ReturnType<typeof setInterval> | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected