cn.hutool.cron.TaskExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.cron;
import cn.hutool.cron.task.CronTask;
import cn.hutool.cron.task.Task;
/**
* 作业执行器
* 执行具体的作业,执行完毕销毁
* 作业执行器唯一关联一个作业,负责管理作业的运行的生命周期。
*
* @author Looly
*/
public class TaskExecutor implements Runnable {
private final Scheduler scheduler;
private final CronTask task;
/**
* 获得原始任务对象
*
* @return 任务对象
*/
public Task getTask() {
return this.task.getRaw();
}
/**
* 获得原始任务对象
*
* @return 任务对象
* @since 5.4.7
*/
public CronTask getCronTask() {
return this.task;
}
/**
* 构造
*
* @param scheduler 调度器
* @param task 被执行的任务
*/
public TaskExecutor(Scheduler scheduler, CronTask task) {
this.scheduler = scheduler;
this.task = task;
}
@Override
public void run() {
try {
scheduler.listenerManager.notifyTaskStart(this);
task.execute();
scheduler.listenerManager.notifyTaskSucceeded(this);
} catch (Exception e) {
scheduler.listenerManager.notifyTaskFailed(this, e);
} finally {
scheduler.taskExecutorManager.notifyExecutorCompleted(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy