Ejemplo n.º 1
0
        public TelemetryExtract(TelemetryInfo TelemetryInfo)
        {
            this.telemetryInfo = TelemetryInfo;
            this.il2codData = new IL2CoD(this.telemetryInfo);
            this.RunCore = true;
            this.delay = 20;

            this.changeSim = new object();
            this.actualSim = this.il2codData;

            Task.Factory.StartNew(() => this.readDataSimulator(), TaskCreationOptions.LongRunning);
        }
Ejemplo n.º 2
0
 public IL2CoD(TelemetryInfo Telemetry)
 {
     this.telemetryData = Telemetry;
 }