您的位置:首页 > 其它

ScheduledExecutorService 定时任务,scheduleAtFixedRate和scheduleWithFixedDelay区别

2017-10-01 00:34 447 查看
比Timer用着方便,用过很多次,经常被用

scheduleWithFixedDelay,每一次以固定的延迟时间开始调度task

参数
1 command the task to execute
2 initialDelay the time to delay first execution
3 delay the delay between the termination of one execution  and the commencement of the next
4 unit the time unit of the initialDelay and delay parameters

解释
第一次调度开始时间点=当前时间+initialDelay
下一次调度开始时间点=上一次task完成时间点+delay


scheduleAtFixedRate,每一次以固定的频率开始调度task

这是参数
1 command the task to execute
2 initialDelay the time to delay first execution
3 period the period between successive executions
4 unit the time unit of the initialDelay and period parameters

解释
第一次调度开始时间点=当前时间+initialDelay
第二次调度开始时间点=initialDelay + perid
第n次调度开始时间点=initialDelay + n *perid

比如:
现在是12:00启动服务 设定initialDelay=1;period=2;unit=小时
第一次:12:00 + 1 =13:00
第二次:12:00 + 1 +2 =15:00
第三次次:12:00 +1 + 2 + 2 =17:00
...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: