Ejemplo n.º 1
0
        protected override bool StartLoop()
        {
            _link = Threading.ThreadManager.CreateThread(link => UpdateDetection());
            _link.StartInfiniteLoop(50);

            return(true);
        }
Ejemplo n.º 2
0
 protected override void StopLoop()
 {
     _link.Cancel();
     _link.WaitEnd();
     _link = null;
 }