当前位置:   article > 正文

浅析Java高并发下ScheduleThreadPoolExecutor延时任务_使用threadpoolexecutor创建scheduledexecutorservice

使用threadpoolexecutor创建scheduledexecutorservice

浅析Java高并发下ScheduleThreadPoolExecutor延时任务

Java中的计划任务Timer工具类提供了以计时器或计划任务的功能来实现按指定时间或时间间隔执行任务,但由于Timer工具类并不是以池pool方式实现的,而是以队列的方式来管理线程的,所以在高并发的情况下运行效率较低,在JDK 1.5版本以后提供了ScheduledExecutorService对象来解决效率与定时任务的性能问题。

这篇文章我们主要讨论ScheduledExecutorService的使用技巧以及一些常用的线程池操作方法,后面的文章会继续对执行器进行深入的交流探讨。

image

Executors 工具类提供了两个常用的ScheduledThreadPoolExecutor

这两个常用的ScheduledThreadPoolExecutor:SingleThreadScheduledExecutor(单线程的线程池)、ScheduledThreadPool(线程数量固定的线程池),下面是 Executors 对应的源代码。

  1. public static ScheduledExecutorService newSingleThreadScheduledExecutor() {
  2. return new DelegatedScheduledExecutorService(new ScheduledThreadPoolExecutor(1));
  3. }
  4. public static ScheduledExecutorService newSingleThreadScheduledExecutor(ThreadFactory arg) {
  5. return new DelegatedScheduledExecutorService(new ScheduledThreadPoolExecutor(1, arg));
  6. }
  7. public static ScheduledExecutorService newScheduledThreadPool(int arg) {
  8. return new ScheduledThreadPoolExecutor(arg);
  9. }
  10. public static ScheduledExecutorService newScheduledThreadPool(int arg, ThreadFactory arg0) {
  11. return new ScheduledThreadPoolExecutor(arg, arg0);
  12. }

ScheduledExecutorService是一个接口,继承于ExecutorService,支持线程池的所有功能,同时也提供了四个用于计划任务调度的核心方法。

下面我将介绍这四个方法的使用和一些常用的线程池方法:

1、schedule runnable

带延迟时间的调度,只执行一次,返回值为实现Future接口的对象,可调用Future.get()方法阻塞直到任务执行完毕

  1. /**
  2. * 创建并执行在给定延迟后启用的一次性操作
  3. *
  4. * @param command 要执行的任务
  5. * @param delay 从现在开始延迟执行的时间
  6. * @param unit 延时参数的时间单位
  7. * @return 表示任务等待完成,并且其的ScheduledFuture get()方法将返回 null
  8. * @throws RejectedExecutionException 如果任务无法安排执行
  9. * @throws NullPointerException 如果命令为空
  10. */
  11. public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit);

schedule runnable使用示例

  1. public static void main(String[] args) throws ExecutionException, InterruptedException {
  2. ScheduledExecutorService scheduled = Executors.newSingleThreadScheduledExecutor();
  3. ScheduledFuture<?> future = scheduled.schedule(() -> {
  4. try {
  5. System.out.println("开始执行任务");
  6. TimeUnit.SECONDS.sleep(3);
  7. } catch (Exception e) {
  8. e.printStackTrace();
  9. }
  10. System.out.println("执行完毕");
  11. }, 1000, TimeUnit.MILLISECONDS);
  12. System.out.println("阻塞开始");
  13. System.out.println(future.get() + "");
  14. System.out.println("阻塞结束");
  15. }

执行结果如下:

阻塞开始
开始执行任务
执行完毕
null
阻塞结束

schedule runnable,这个方法是不提供返回值的,所以调用future.get()方法返回的是null

2、schedule callable

带延迟时间的调度,只执行一次,返回值为实现Future接口的对象,调用Future.get()方法阻塞直到任务完成,可以获取到返回结果

  1. /**
  2. * 创建并执行在给定延迟后启用的ScheduledFuture
  3. *
  4. * @param callable 执行的功能
  5. * @param delay 从现在开始延迟执行的时间
  6. * @param unit 延迟参数的时间单位
  7. * @param <V> the 可调用结果的类型
  8. * @return一个可用于提取结果或取消的ScheduledFuture
  9. * @throws RejectedExecutionException 如果该任务无法安排执行
  10. * @throws NullPointerException 如果callable为空
  11. */
  12. public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit);

schedule Callable 使用示例

  1. public static void main(String[] args) throws ExecutionException, InterruptedException {
  2. ScheduledExecutorService scheduled = Executors.newSingleThreadScheduledExecutor();
  3. ScheduledFuture<String> future = scheduled.schedule(() -> {
  4. try {
  5. System.out.println("开始执行任务");
  6. TimeUnit.SECONDS.sleep(3);
  7. } catch (Exception e) {
  8. e.printStackTrace();
  9. }
  10. System.out.println("执行完毕");
  11. return "success";
  12. }, 1000, TimeUnit.MILLISECONDS);
  13. System.out.println("阻塞开始");
  14. System.out.println(future.get() + "");
  15. System.out.println("阻塞结束");
  16. }

执行结果:

阻塞开始
开始执行任务
执行完毕
success
阻塞结束

schedule callable 是带返回值的,通过future.get()获取

3、scheduleAtFixedRate

创建并执行一个在给定初始延迟后的定期操作,也就是将在 initialDelay 后开始执行,然后在initialDelay+period 后下一个任务执行,接着在 initialDelay + 2 * period 后执行,依此类推 ,也就是只在第一次任务执行时有延时。

  1. /**
  2. * @param command 要执行的任务
  3. * @param initialDelay 首次执行的延迟时间
  4. * @param period 连续执行之间的周期
  5. * @param unit initialDelay和period参数的时间单位
  6. * @return 一个ScheduledFuture代表待完成的任务,其 get()方法将在取消时抛出异常
  7. * @throws RejectedExecutionException 如果任务无法安排执行
  8. * @throws NullPointerException 如果命令为空
  9. * @throws IllegalArgumentException 如果period小于或等于零
  10. */
  11. public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit);

scheduleAtFixedRate使用示例

  1. public static void main(String[] args) throws ExecutionException, InterruptedException {
  2. ScheduledExecutorService scheduled = Executors.newScheduledThreadPool(5);
  3. ScheduledFuture<?> future = scheduled.scheduleAtFixedRate(new Runnable() {
  4. @Override
  5. public void run() {
  6. try {
  7. System.out.println("开始执行任务");
  8. TimeUnit.SECONDS.sleep(3);
  9. } catch (Exception e) {
  10. e.printStackTrace();
  11. }
  12. System.out.println("执行完毕");
  13. }
  14. }, 1000L, 1000L, TimeUnit.MILLISECONDS);
  15. System.out.println("阻塞开始");
  16. System.out.println(future.get() + "");
  17. System.out.println("阻塞结束");
  18. }

打印结果如下:

阻塞开始
开始执行任务
执行完毕
开始执行任务
执行完毕
开始执行任务
执行完毕
....

4、scheduleWithFixedDelay

创建并执行一个在给定初始延迟后首次启用的定期操作,随后,在每一次执行终止和下一次执行开始之间都存在给定的延迟,即总时间是(initialDelay + period)* n

  1. /**
  2. * @param command 要执行的任务
  3. * @param initialDelay 首次执行的延迟时间
  4. * @param delay 一次执行终止和下一次执行开始之间的延迟
  5. * @param unit initialDelay和delay参数的时间单位
  6. * @return 表示挂起任务完成的ScheduledFuture,并且其get()方法在取消后将抛出异常
  7. * @throws RejectedExecutionException 如果任务不能安排执行
  8. * @throws NullPointerException 如果command为null
  9. * @throws IllegalArgumentException 如果delay小于等于0
  10. */
  11. public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit);

scheduledWithFixedDelay使用示例

  1. public static void main(String[] args) throws ExecutionException, InterruptedException {
  2. ScheduledExecutorService scheduled = Executors.newScheduledThreadPool(5);
  3. ScheduledFuture<?> future = scheduled.scheduleWithFixedDelay(new Runnable() {
  4. @Override
  5. public void run() {
  6. try {
  7. System.out.println("开始执行任务");
  8. TimeUnit.SECONDS.sleep(3);
  9. } catch (Exception e) {
  10. e.printStackTrace();
  11. }
  12. System.out.println("执行完毕");
  13. }
  14. }, 1000L, 1000L, TimeUnit.MILLISECONDS);
  15. System.out.println("阻塞开始");
  16. System.out.println(future.get() + "");
  17. System.out.println("阻塞结束");
  18. }

打印结果如下:

阻塞开始
开始执行任务
执行完毕
开始执行任务
执行完毕
开始执行任务
执行完毕
....

scheduleAtFixedRate和scheduleWithFixedDelay的区别在于,scheduleAtFixedRate()为固定频率,scheduleWithFixedDelay()为固定延迟。固定频率是相对于任务执行的开始时间,而固定延迟是相对于任务执行的结束时间,这就是他们最根本的区别!

5、线程池关闭,shutdown()和shutdownNow()的使用

两个关闭线程池的方法,一旦线程池被关闭,就会拒绝以后提交的所有任务

使用shutdown()可以使用awaitTermination等待所有线程执行完毕当前任务。在shutdown以前已提交任务的执行中发起一个有序的关闭,但是不接受新任务。

使用shutdownNow()尝试停止所有正在执行的任务、暂停等待任务的处理,并返回等待执行的任务列表。对于正在运行,尝试通过中断该线程来结束线程。对于尚未运行的任务,则都不再执行。

  1. class PrintThreadFactory implements ThreadFactory {
  2. @Override
  3. public Thread newThread(Runnable r) {
  4. return new Thread(r, "PrintThreadFactory");
  5. }
  6. }
  1. public static void main(String[] args) {
  2. final AtomicInteger count = new AtomicInteger(0);
  3. final CountDownLatch countDownLatch = new CountDownLatch(1);
  4. ScheduledExecutorService schedule = Executors.newScheduledThreadPool(1, new PrintThreadFactory());
  5. Runnable runnable = () -> {
  6. System.out.println("print " + count.getAndIncrement());
  7. if (count.get() == 3) {
  8. countDownLatch.countDown();
  9. System.out.println("任务继续...");
  10. try {
  11. Thread.sleep(3000L);
  12. } catch (Exception e) {
  13. e.printStackTrace();
  14. }
  15. System.out.println("任务结束");
  16. }
  17. };
  18. schedule.scheduleAtFixedRate(runnable, 0L, 2L, TimeUnit.SECONDS);
  19. try {
  20. countDownLatch.await();
  21. schedule.shutdown(); //平滑停止线程,不处理新任务,完成正在执行的任务
  22. // schedule.shutdownNow(); // 尝试强制停止线程,让终止的线程去设置休眠会抛出异常
  23. if (schedule.isShutdown()) {
  24. System.out.println("Scheduled is shutdown");
  25. }
  26. if (schedule.awaitTermination(10L, TimeUnit.SECONDS)) {
  27. System.out.println("termination");
  28. }
  29. } catch (Exception e) {
  30. e.printStackTrace();
  31. }
  32. }

通过Future.cancel()取消运行任务

cancel()方法接收参数是布尔型的,传入true会中断线程停止任务,传入false则会让线程正常执行至完成。这里传入false既然不会中断线程,那么这个cancel方法不就没有意义了?

  1. class PrintThreadFactory implements ThreadFactory {
  2. @Override
  3. public Thread newThread(Runnable r) {
  4. return new Thread(r, "PrintThreadFactory");
  5. }
  6. }
  1. public static void main(String[] args) {
  2. final AtomicInteger count = new AtomicInteger(0);
  3. final CountDownLatch countDownLatch = new CountDownLatch(1);
  4. ScheduledExecutorService schedule = Executors.newScheduledThreadPool(1, new PrintThreadFactory());
  5. Runnable runnable = () -> {
  6. System.out.println("print " + count.getAndIncrement());
  7. if (count.get() == 3) {
  8. countDownLatch.countDown();
  9. }
  10. };
  11. Future future = schedule.scheduleAtFixedRate(runnable, 0L, 2L, TimeUnit.SECONDS);
  12. try {
  13. countDownLatch.await();
  14. future.cancel(true);
  15. if (future.isCancelled()) {
  16. System.out.println("is Cancelled");
  17. }
  18. } catch (Exception e) {
  19. e.printStackTrace();
  20. }
  21. }

简单来说传入false参数只能取消还没开始的任务,若任务已经开始了,就由其运行下去。所以对于已经开始的任务,如果想要停止的话,需要给cancel方法的参数设置为true。

6、ScheduledThreadPoolExecutor参数使用

image

continueExistingPeriodicTasksAfterShutdown,对于通过scheduleAtFixedRate、scheduleWithFixedDelay 提交的周期任务有效 默认值为false,设置为true表示当执行器调用shutdown后,继续执行延时任务;

与之对应的get和set方法

  1. void setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean value)
  2. boolean getContinueExistingPeriodicTasksAfterShutdownPolicy()

executeExistingDelayedTasksAfterShutdown,对于通过schedule()方法提交的延时任务有效,默认为true,设置为false表示当执行器调用shutdown后,不再继续执行现有延迟任务;

与之对应的get和set方法

  1. void setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean value)
  2. boolean getExecuteExistingDelayedTasksAfterShutdownPolicy()

removeOnCancel,默认为false,设置为true则从队列中删除执行任务;

与之对应的get和set方法

  1. void setRemoveOnCancelPolicy(boolean value)
  2. boolean getRemoveOnCancelPolicy()

使用示例

  1. public static void main(String[] args) {
  2. ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(10);
  3. Runnable runnable = () -> System.out.println(Thread.currentThread().getName() + "_1");
  4. // ScheduledFuture<?> future = executor.schedule(runnable, 3, TimeUnit.SECONDS);
  5. // 对于通过schedule()方法提交的延时任务有效,默认为true,设置为false表示当执行器调用shutdown后,不再继续执行现有延迟任务
  6. // executor.setExecuteExistingDelayedTasksAfterShutdownPolicy(true);
  7. // System.out.println(executor.getQueue().size());
  8. // // 默认为false,设置为true则从队列中删除执行任务
  9. // executor.setRemoveOnCancelPolicy(false);
  10. // future.cancel(true);
  11. // System.out.println(executor.getQueue().size());
  12. executor.scheduleAtFixedRate(runnable, 1L, 1L, TimeUnit.SECONDS);
  13. // //对于通过scheduleAtFixedRate、scheduleWithFixedDelay 提交的周期任务有效 默认值为false,设置为true表示当执行器调用shutdown后,继续执行延时任务
  14. executor.setContinueExistingPeriodicTasksAfterShutdownPolicy(true);
  15. executor.shutdown();
  16. System.out.println("线程池停止");
  17. }

7、其他

零延时的 execute()、submit() 方法

execute()、submit() 方法都被重写了,本质上调用的还是 schedule() 方法;从下面的源码可以看出,这两个方法提交的任务都是延时为0的 “实时任务”;

  1. public void execute(Runnable arg0) {
  2. this.schedule(arg0, 0L, TimeUnit.NANOSECONDS);
  3. }
  4. public Future<?> submit(Runnable arg0) {
  5. return this.schedule(arg0, 0L, TimeUnit.NANOSECONDS);
  6. }

封装计划任务线程池工具类

下面是使用单例模式封装的工具类

  1. public final class MyScheduledExecutor {
  2. // 全局用于处理接收Future对象的集合
  3. private ConcurrentHashMap<String, Future> futureMap = new ConcurrentHashMap<>();
  4. // 计划执行任务
  5. private ScheduledExecutorService executorService = new ScheduledThreadPoolExecutor(5);
  6. private MyScheduledExecutor() {
  7. }
  8. // 设计为单例模式
  9. private static final class InnerExecutorService {
  10. private static final MyScheduledExecutor INSTANCE = new MyScheduledExecutor();
  11. }
  12. public static MyScheduledExecutor getInstance() {
  13. return InnerExecutorService.INSTANCE;
  14. }
  15. public ConcurrentHashMap<String, Future> getFutureMap() {
  16. return futureMap;
  17. }
  18. public void shutdown() {
  19. executorService.shutdown();
  20. }
  21. /**
  22. * 执行任务
  23. * @param runnable {@code Runnable}
  24. */
  25. public void execute(Runnable runnable) {
  26. executorService.execute(runnable);
  27. }
  28. /**
  29. * 执行延时任务
  30. *
  31. * @param runnable {@code Runnable}
  32. * @param delay 延迟时间
  33. * @param timeUnit 时间单位
  34. */
  35. public void scheduler(Runnable runnable, long delay, TimeUnit timeUnit) {
  36. executorService.schedule(runnable, delay, timeUnit);
  37. }
  38. /**
  39. * 执行延时周期性任务scheduleAtFixedRate
  40. *
  41. * @param runnable {@code ScheduledExecutorService.JobRunnable}
  42. * @param initialDelay 延迟时间
  43. * @param period 周期时间
  44. * @param timeUnit 时间单位
  45. * @param <T> {@code ScheduledExecutorService.JobRunnable}
  46. */
  47. public <T extends JobRunnable> void scheduleAtFixedRate(T runnable, long initialDelay, long period, TimeUnit timeUnit) {
  48. Future future = executorService.scheduleAtFixedRate(runnable, initialDelay, period, timeUnit);
  49. futureMap.put(runnable.getJobId(), future);
  50. }
  51. /**
  52. * 执行延时周期性任务scheduleWithFixedDelay
  53. *
  54. * @param runnable {@code ScheduledExecutorService.JobRunnable}
  55. * @param initialDelay 延迟时间
  56. * @param period 周期时间
  57. * @param timeUnit 时间单位
  58. * @param <T> {@code ScheduledExecutorService.JobRunnable}
  59. */
  60. public <T extends JobRunnable> void scheduleWithFixedDelay(T runnable, long initialDelay, long period, TimeUnit timeUnit) {
  61. Future future = executorService.scheduleWithFixedDelay(runnable, initialDelay, period, timeUnit);
  62. futureMap.put(runnable.getJobId(), future);
  63. }
  64. public static abstract class JobRunnable implements Runnable {
  65. private String jobId;
  66. public JobRunnable(String jobId) {
  67. this.jobId = jobId;
  68. }
  69. public void terminal() {
  70. try {
  71. Future future = MyScheduledExecutor.getInstance().getFutureMap().remove(jobId);
  72. future.cancel(true);
  73. } finally {
  74. System.out.println("jobId " + jobId + " had cancel");
  75. }
  76. }
  77. public String getJobId() {
  78. return jobId;
  79. }
  80. }
  81. }

调用示例

  1. public static void main(String[] args) throws Exception {
  2. MyScheduledExecutor service = MyScheduledExecutor.getInstance();
  3. service.execute(() -> System.out.println("execute"));
  4. // service.scheduler(new Runnable() {
  5. // @Override
  6. // public void run() {
  7. // for (Map.Entry<String, Future> next : service.getFutureMap().entrySet()) {
  8. // String key = next.getKey();
  9. // int i = Integer.parseInt(key.substring(3));
  10. // // 停止部分线程
  11. // if (i % 2 == 0) {
  12. // next.getValue().cancel(true);
  13. // }
  14. // }
  15. // }
  16. // }, 20, TimeUnit.SECONDS);
  17. for (int i = 0; i < 5; i++) {
  18. int num = new Random().nextInt(500);
  19. service.scheduleAtFixedRate(new MyScheduledExecutor.JobRunnable("scheduleAtFixedRate" + num) {
  20. @Override
  21. public void run() {
  22. System.out.println(num);
  23. }
  24. }, 10, 2, TimeUnit.SECONDS);
  25. }
  26. Thread.sleep(15000);
  27. for (Map.Entry<String, Future> next : service.getFutureMap().entrySet()) {
  28. String key = next.getKey();
  29. int i = Integer.parseInt(key.substring(3));
  30. // 停止部分线程
  31. if (i % 2 == 0) {
  32. next.getValue().cancel(true);
  33. }
  34. }
  35. Thread.sleep(20000);
  36. service.shutdown();
  37. }

总结

需要注意,通过ScheduledExecutorService执行的周期任务,如果任务执行过程中抛出了异常,那么ScheduledExecutorService就会停止执行任务,且也不会再周期地执行该任务了。所以如果想保住任务都一直被周期执行,那么catch一切可能的异常。

如果文章的内容对你有帮助,欢迎关注公众号:优享JAVA(ID:YouXiangJAVA),那里有更多的技术干货,并精心准备了一份程序员书单。期待你的到来!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/83749
推荐阅读
相关标签
  

闽ICP备14008679号