Interface TimerJobScheduler
-
- All Known Implementing Classes:
TimerJobSchedulerImpl
public interface TimerJobScheduler- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrescheduleTimerJobAfterExecution(JobEntity timerJob, org.flowable.variable.api.delegate.VariableScope variableScope)Re-schedule a timer job once it has finished with its execution.voidscheduleTimerJob(TimerJobEntity timerJob)Schedules a timer, meaning it will be inserted in the datastore.
-
-
-
Method Detail
-
rescheduleTimerJobAfterExecution
void rescheduleTimerJobAfterExecution(JobEntity timerJob, org.flowable.variable.api.delegate.VariableScope variableScope)
Re-schedule a timer job once it has finished with its execution.- Parameters:
timerJob- the job that was executedvariableScope- the variable scope in which it was executed.
-
scheduleTimerJob
void scheduleTimerJob(TimerJobEntity timerJob)
Schedules a timer, meaning it will be inserted in the datastore.
-
-