使用调度线程池执行“指定时间只执行一次”和“指定时间间隔执行”
Posted Peter-OK
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用调度线程池执行“指定时间只执行一次”和“指定时间间隔执行”相关的知识,希望对你有一定的参考价值。
ScheduledExecutorService executorService = new ScheduledThreadPoolExecutor(1);
executorService.schedule(new TimerTask()
@Override
public void run()
try
System.out.println(System.currentTimeMillis()+"=000");
Thread.sleep(7000);
System.out.println(System.currentTimeMillis()+"=111");
catch (InterruptedException e)
e.printStackTrace();
,2, TimeUnit.SECONDS);
executorService.scheduleAtFixedRate(new TimerTask()
@Override
public void run()
try
System.out.println(System.currentTimeMillis()+"=111222333");
Thread.sleep(2000);
System.out.println(System.currentTimeMillis()+"=666777888");
catch (InterruptedException e)
e.printStackTrace();
, 2 , 5,TimeUnit.SECONDS);
/*
1610610883095=000
1610610890095=111
1610610890095=111222333
1610610892095=666777888
1610610892095=111222333
1610610894096=666777888
1610610894096=111222333
1610610896096=666777888
...
*/
总结:
1.new ScheduledThreadPoolExecutor(1) 指定创建1个线程,那么当第一个线程执行完才会继续执行第二个线程。
2.schedule(Runnable command,long delay, TimeUnit unit); 指定delay时间后执行command线程,且只执行一次。
3.scheduleAtFixedRate(Runnable command,long initialDelay, long period, TimeUnit unit);指定initialDelay时间后执行command线程,且隔period时间后再次执行command线程。
补充说明scheduleAtFixedRate和scheduleWithFixedDelay区别:
scheduleAtFixedRate(Runnable command,long initialDelay,long period,TimeUnit unit); 指定initialDelay时间后执行command线程,且隔 period 时间后再次执行command线程。
scheduleWithFixedDelay(Runnable command,long initialDelay,long delay,TimeUnit unit);指定initialDelay时间后执行command线程,且隔 command线程执行耗时+period 时间后再次执行command线程。
以上是关于使用调度线程池执行“指定时间只执行一次”和“指定时间间隔执行”的主要内容,如果未能解决你的问题,请参考以下文章