Package io.zeebe.engine.processing.timer
Class DueDateTimerChecker
- java.lang.Object
-
- io.zeebe.engine.processing.timer.DueDateTimerChecker
-
- All Implemented Interfaces:
StreamProcessorLifecycleAware
public class DueDateTimerChecker extends Object implements StreamProcessorLifecycleAware
-
-
Constructor Summary
Constructors Constructor Description DueDateTimerChecker(WorkflowState workflowState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonPaused()Callback which is called when the processing is paused, will only called after onRecovered was called before.voidonRecovered(ReadonlyProcessingContext processingContext)Callback after reprocessing was successful and before regular processing beginsvoidonResumed()Callback which is called when the processing is resumed, will only called after onPaused was called before.voidscheduleTimer(TimerInstance timer)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.zeebe.engine.processing.streamprocessor.StreamProcessorLifecycleAware
onClose, onFailed
-
-
-
-
Constructor Detail
-
DueDateTimerChecker
public DueDateTimerChecker(WorkflowState workflowState)
-
-
Method Detail
-
scheduleTimer
public void scheduleTimer(TimerInstance timer)
-
onRecovered
public void onRecovered(ReadonlyProcessingContext processingContext)
Description copied from interface:StreamProcessorLifecycleAwareCallback after reprocessing was successful and before regular processing begins- Specified by:
onRecoveredin interfaceStreamProcessorLifecycleAware
-
onPaused
public void onPaused()
Description copied from interface:StreamProcessorLifecycleAwareCallback which is called when the processing is paused, will only called after onRecovered was called before.- Specified by:
onPausedin interfaceStreamProcessorLifecycleAware
-
onResumed
public void onResumed()
Description copied from interface:StreamProcessorLifecycleAwareCallback which is called when the processing is resumed, will only called after onPaused was called before.- Specified by:
onResumedin interfaceStreamProcessorLifecycleAware
-
-