This commit is contained in:
Looly 2022-03-27 20:27:48 +08:00
parent bdf9eacb45
commit 328d54d986
2 changed files with 9 additions and 8 deletions

View File

@ -2,11 +2,10 @@ package cn.hutool.cron;
/**
* 作业启动器<br>
* 负责检查<strong>TaskTable</strong>是否有匹配到此时运行的Task<br>
* 负责检查 {@link TaskTable} 是否有匹配到此时运行的Task<br>
* 检查完毕后启动器结束
*
* @author Looly
*
*/
public class TaskLauncher implements Runnable {

View File

@ -7,6 +7,8 @@
* <li>{@link cn.hutool.cron.pattern.CronPattern} 定时任务表达式用于定义任务触发时间</li>
* </ul>
*
* 同时提供了{@link cn.hutool.cron.CronUtil}工具类维护一个全局的{@link cn.hutool.cron.Scheduler}
*
* @author looly
*/
package cn.hutool.cron;