All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.cron.task.Task Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.cron.task;

/**
 * 定时作业接口,通过实现execute方法执行具体的任务
 * 

* 作业执行是异步执行,即不同作业、相同作业在不同时间的执行是相互独立的。
* 假如前一个作业未完成,下一个调度开始,则不会等待前一个作业,直接执行。
* 关于作业的互斥,请自行加锁完成。 *

* * @author Looly */ @FunctionalInterface public interface Task { /** * 执行作业 *

* 作业的具体实现需考虑异常情况,默认情况下任务异常在监听中统一监听处理,如果不加入监听,异常会被忽略
* 因此最好自行捕获异常后处理 */ void execute(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy