private void NotifyTickHandler(rst4.IncrementTick incrementTick) { LogInfo("Got Tick"); _mainPort.Post(new rst4.IncrementTick(incrementTick.Body)); }
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; }
private void RemoteNotifyTickHandler(rst4.IncrementTick incrementTick) { LogInfo("Got Tick from remote"); _mainPort.Post(new IncrementTick("Remote")); }