private void NotifyTickHandler(rst4.IncrementTick incrementTick)
 {
     LogInfo("Got Tick");
     _mainPort.Post(new rst4.IncrementTick(incrementTick.Body));
 }
예제 #2
0
 private void LocalNotifyTickHandler(rst4.IncrementTick incrementTick)
 {
     LogInfo("Got Tick from local");
     _mainPort.Post(new IncrementTick("Local"));
 }
 public IEnumerator <ITask> IncrementTickHandler(rst4.IncrementTick incrementTick)
 {
     _state.TickCount++;
     incrementTick.ResponsePort.Post(DefaultUpdateResponseType.Instance);
     yield break;
 }
예제 #4
0
 private void RemoteNotifyTickHandler(rst4.IncrementTick incrementTick)
 {
     LogInfo("Got Tick from remote");
     _mainPort.Post(new IncrementTick("Remote"));
 }