美文网首页
scheduleAtFixedRate和scheduleWith

scheduleAtFixedRate和scheduleWith

作者: stephenchen666 | 来源:发表于2021-06-08 14:48 被阅读0次

    Executors提供的线程池ScheduledExecutorService中有两个方法,scheduleAtFixedRate 和 scheduleWithFixedDelay 。它们都可以延时且定期执行任务,但延时的时间是有差别的,下面介绍:

    scheduleAtFixedRate ,中文意思为 以固定比率执行,参数有 Runnable command, long initialDelay,long period,TimeUnit unit   第1次执行的时间是initialDelay(unit),第2次执行的时间是initialDelay+period(unit),第3次执行的时间是initialDelay+period*2(unit),依次类推。。。也就是,在任务开始后,period时间后,便会执行下一次任务。如果period时间到了,但上一次还没执行完毕,则等待,直到上一次的任务执行完毕,然后马上执行本次任务。

    scheduleWithFixedDelay ,中文意思为 以固定的延迟来执行,参数有 Runnable command, long initialDelay,long delay,TimeUnit unit ,该方法第1次执行也是在initialDelay(unit)后,但第2次执行是在第1次执行完毕后算起的delay时间后再执行。

    因此,这两个方法的不同点是,scheduleAtFixedRate 是从任务开始时算起,scheduleWithFixedDelay 是从任务结束时算起。。。

    相关文章

      网友评论

          本文标题:scheduleAtFixedRate和scheduleWith

          本文链接:https://www.haomeiwen.com/subject/bgkleltx.html