mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix comment
This commit is contained in:
@@ -74,7 +74,7 @@ import cn.hutool.cron.pattern.parser.YearValueParser;
|
||||
* <li><strong>*/2 * * * *</strong>:每两小时执行</li>
|
||||
* <li><strong>* 12 * * *</strong>:12点的每分钟执行</li>
|
||||
* <li><strong>59 11 * * 1,2</strong>:每周一和周二的11:59执行</li>
|
||||
* <li><strong>3-18/5 * * * *</strong>:3~18分,每5分钟执行一次,既0:03, 0:08, 0:13, 0:18, 1:03, 1:08……</li>
|
||||
* <li><strong>3-18/5 * * * *</strong>:3~18分,每5分钟执行一次,即0:03, 0:08, 0:13, 0:18, 1:03, 1:08……</li>
|
||||
* </ul>
|
||||
*
|
||||
* @author Looly
|
||||
|
@@ -3,7 +3,7 @@ package cn.hutool.cron.task;
|
||||
/**
|
||||
* 定时作业接口,通过实现execute方法执行具体的任务
|
||||
* <p>
|
||||
* 作业执行是异步执行,既不同作业、相同作业在不同时间的执行是相互独立的。<br>
|
||||
* 作业执行是异步执行,即不同作业、相同作业在不同时间的执行是相互独立的。<br>
|
||||
* 假如前一个作业未完成,下一个调度开始,则不会等待前一个作业,直接执行。<br>
|
||||
* 关于作业的互斥,请自行加锁完成。
|
||||
* </p>
|
||||
|
Reference in New Issue
Block a user