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