예제 #1
0
 public void StopReplayRunner()
 {
     if( replayRunner != null ) {
         App.Communicator.removeListener(this);
         replayRunner.Stop();
         replayRunner = null;
     }
 }
예제 #2
0
 public void StartReplayRunner(String path)
 {
     App.Communicator.addListener(this);
     replayRunner = new ReplayRunner(this, path,gs);
 }