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

Interface StickyEnrichment

server/src/datasource.ts:132–145  ·  view source on GitHub ↗

Enrichment we've resolved for an aircraft, kept sticky for its session.

Source from the content-addressed store, hash-verified

130
131/** Enrichment we've resolved for an aircraft, kept sticky for its session. */
132interface 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
147export class Poller {
148 private timer: ReturnType<typeof setInterval> | null = null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected