Exemplo n.º 1
0
 public MDTServerListener(MDT mdt)
 {
     this.mdt     = mdt;
     Port         = r.Next(10000, 11000);
     threadHandle = new Thread(Run);
     threadHandle.Start();
 }
Exemplo n.º 2
0
Arquivo: AVLS.cs Projeto: mavady/ADS
 public AVLS(MDT mdt, Func <bool> sendPosition)
 {
     this.mdt     = mdt;
     testSend     = sendPosition;
     threadHandle = new Thread(SendPosition);
     threadHandle.Start();
 }
Exemplo n.º 3
0
 public MDTServerRabbitMQListener(string queue_name, MDT mdt)
 {
     _queue_name = queue_name;
     _mdt        = mdt;
 }