Example #1
0
        public TimerThread(ActionSyncronizer sync)
        {
            this.sync = sync;

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