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