Example #1
0
 private protected override void WachingStert()
 {
     Task.Run(() =>
     {
         OMG = new OMGinformer();
         SetEvents();
         OMG.StartInformStream(Config.IP);
     });
 }
Example #2
0
 private protected override void WachingReset()
 {
     OMG?.ClearEvents();
     OMG?.StopInformStream();
     if (OMG != null)
     {
         SetEvents();
     }
     OMG?.StartInformStream(Config.IP);
 }