Esempio n. 1
0
        public TimerThread(ActionSyncronizer sync)
        {
            this.sync = sync;

            ThreadManager.NewThread(this.TimingThread, () => { lock (synclock) endThread = true; }, "TimerThread");
        }
Esempio n. 2
0
 public ActionSyncronizerProxy(ActionSyncronizer sync)
 {
     this.sync = sync;
 }
Esempio n. 3
0
 public SyncAction(Action a, ActionSyncronizer sync)
 {
     this.a    = a;
     this.sync = sync;
 }