示例#1
0
        private void OnProviderFlightsUpdated(object sender, FlightsEventArgs e)
        {
            HashSet <string> hashSet = BuildListOfFlights();

            if (!hashSet.SetEquals(activeFlights ?? new HashSet <string>()))
            {
                activeFlights = hashSet;
                OnFlightsUpdated();
            }
        }
示例#2
0
 private void OnFlightsUpdated(object sender, FlightsEventArgs e)
 {
     SetFlightsTelemetry();
 }