Click or drag to resize
ICallsignRouteFetcher Interface
The interface for a singleton object that manages the fetching of routes for callsigns across many aircraft lists (or potentially anything that needs to find callsigns from routes).

Namespace: VirtualRadar.Interface.StandingData
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface ICallsignRouteFetcher : ISingleton<ICallsignRouteFetcher>

The ICallsignRouteFetcher type exposes the following members.

Properties
  NameDescription
Public propertySingleton
Gets the single instance of the class that should be used throughout the application.
(Inherited from ISingletonT.)
Top
Methods
  NameDescription
Public methodRegisterAircraft
Registers an aircraft's callsign with the fetcher. If the details are already known then they are immediately returned, otherwise they will be fetched on a background thread.
Top
Events
  NameDescription
Public eventFetched
Raised when callsign details have been fetched or changed, or if a fetch attempt was made and no details could be found.
Top
See Also