Package de.mhus.lib.core.schedule
Interface TimerTaskIntercepter
-
public interface TimerTaskIntercepter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterExecution(SchedulerJob job, DefaultTaskContext context)booleanbeforeExecution(SchedulerJob job, DefaultTaskContext context, boolean forced)voidinitialize(SchedulerJob job)voidonError(SchedulerJob schedulerJob, DefaultTaskContext context, Throwable e)
-
-
-
Method Detail
-
initialize
void initialize(SchedulerJob job)
-
beforeExecution
boolean beforeExecution(SchedulerJob job, DefaultTaskContext context, boolean forced)
-
afterExecution
void afterExecution(SchedulerJob job, DefaultTaskContext context)
-
onError
void onError(SchedulerJob schedulerJob, DefaultTaskContext context, Throwable e)
-
-