예제 #1
0
 private void AutoSaveThreadStart()
 {
     _autoSaveThread = new StopableThread(_autoSaveReportPeriod, AutoSave);
     _autoSaveThread.Start();
 }
예제 #2
0
 private void ReplicationThreadStart()
 {
     _replicationThread = new StopableThread(_replicationPeriod, Replicate);
     _replicationThread.Start();
 }
예제 #3
0
 private void EmulationThreadStart()
 {
     _emulationThread = new StopableThread(_generationPeriod, Emulation);
     _emulationThread.Start();
 }