}
workflowClock.handleStartTimerFailed(event);
}
private void handleTimerFired(HistoryEvent event) throws Throwable {
TimerFiredEventAttributes attributes = event.getTimerFiredEventAttributes();
String timerId = attributes.getTimerId();
if (timerId.equals(DecisionsHelper.FORCE_IMMEDIATE_DECISION_TIMER)) {
return;
}
workflowClock.handleTimerFired(event.getEventId(), attributes);
}