Java定时调度机制 - ScheduledExecutorService
yuyutoo 2024-10-12 00:07 3 浏览 0 评论
我们知道,Java的定时调度可以通过Timer&TimerTask来实现。由于其实现的方式为单线程,因此从JDK1.3发布之后就一直存在一些问题,大致如下:
- 多个任务之间会相互影响
- 多个任务的执行是串行的,性能较低
ScheduledExecutorService在设计之初就是为了解决Timer&TimerTask的这些问题。因为天生就是基于多线程机制,所以任务之间不会相互影响(只要线程数足够。当线程数不足时,有些任务会复用同一个线程)。
除此之外,因为其内部使用的延迟队列,本身就是基于等待/唤醒机制实现的,所以CPU并不会一直繁忙。同时,多线程带来的CPU资源复用也能极大地提升性能。
如何使用
基本作用
因为ScheduledExecutorService继承于ExecutorService,所以本身支持线程池的所有功能。额外还提供了4种方法,我们来看看其作用。
/** * 带延迟时间的调度,只执行一次 * 调度之后可通过Future.get()阻塞直至任务执行完毕 */ 1. public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit); /** * 带延迟时间的调度,只执行一次 * 调度之后可通过Future.get()阻塞直至任务执行完毕,并且可以获取执行结果 */ 2. public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit); /** * 带延迟时间的调度,循环执行,固定频率 */ 3. public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit); /** * 带延迟时间的调度,循环执行,固定延迟 */ 4. public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit);
1. schedule Runnable
该方法用于带延迟时间的调度,只执行一次。调度之后可通过Future.get()阻塞直至任务执行完毕。我们来看一个例子。
@Test public void test_schedule4Runnable() throws Exception { ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor(); ScheduledFuture future = service.schedule(() -> { try { Thread.sleep(3000L); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("task finish time: " + format(System.currentTimeMillis())); }, 1000, TimeUnit.MILLISECONDS); System.out.println("schedule finish time: " + format(System.currentTimeMillis())); System.out.println("Runnable future's result is: " + future.get() + ", and time is: " + format(System.currentTimeMillis())); }
上述代码达到的效果应该是这样的:延迟执行时间为1秒,任务执行3秒,任务只执行一次,同时通过Future.get()阻塞直至任务执行完毕。
我们运行看到的效果的确和我们猜想的一样,如下图所示。
2. schedule Callable
在schedule Runnable的基础上,我们将Runnable改为Callable来看一下。
@Test public void test_schedule4Callable() throws Exception { ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor(); ScheduledFuture<String> future = service.schedule(() -> { try { Thread.sleep(3000L); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("task finish time: " + format(System.currentTimeMillis())); return "success"; }, 1000, TimeUnit.MILLISECONDS); System.out.println("schedule finish time: " + format(System.currentTimeMillis())); System.out.println("Callable future's result is: " + future.get() + ", and time is: " + format(System.currentTimeMillis())); }
运行看到的结果和Runnable基本相同,唯一的区别在于future.get()能拿到Callable返回的真实结果。
3. scheduleAtFixedRate
该方法用于固定频率地对一个任务循环执行,我们通过一个例子来看看效果。
@Test public void test_scheduleAtFixedRate() { ScheduledExecutorService service = Executors.newScheduledThreadPool(5); service.scheduleAtFixedRate(() -> { try { Thread.sleep(3000L); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("task finish time: " + format(System.currentTimeMillis())); }, 1000L, 1000L, TimeUnit.MILLISECONDS); System.out.println("schedule finish time: " + format(System.currentTimeMillis())); while (true) { } }
在这个例子中,任务初始延迟1秒,任务执行3秒,任务执行间隔为1秒。我们来看看执行结果:
4. scheduleWithFixedDelay
该方法用于固定延迟地对一个任务循环执行,我们通过一个例子来看看效果。
@Test public void test_scheduleWithFixedDelay() { ScheduledExecutorService service = Executors.newScheduledThreadPool(5); service.scheduleWithFixedDelay(() -> { try { Thread.sleep(3000L); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("task finish time: " + format(System.currentTimeMillis())); }, 1000L, 1000L, TimeUnit.MILLISECONDS); System.out.println("schedule finish time: " + format(System.currentTimeMillis())); while (true) { } }
在这个例子中,任务初始延迟1秒,任务执行3秒,任务执行间隔为1秒。我们来看看执行结果:
5. scheduleAtFixedRate和scheduleWithFixedDelay的区别
既然这两个方法都是对任务循环执行,那么他们又有何区别呢?通过jdk文档我们找到了答案。
直白地讲,scheduleAtFixedRate()为固定频率,scheduleWithFixedDelay()为固定延迟。固定频率是相对于任务执行的开始时间,而固定延迟是相对于任务执行的结束时间,这就是他们最根本的区别!
另外,从3和4的运行结果也能看出这些差异。
源码阅读初体验
一般源码的入口在于构造方法,我们来看看。
public static ScheduledExecutorService newScheduledThreadPool(int corePoolSize) { return new ScheduledThreadPoolExecutor(corePoolSize); } public ScheduledThreadPoolExecutor(int corePoolSize) { super(corePoolSize, Integer.MAX_VALUE, 0, NANOSECONDS, new DelayedWorkQueue()); }
在构造方法中我们看到以下信息:
- ScheduledThreadPoolExecutor构造方法最终调用的是ThreadPoolExecutor构造方法
- 阻塞队列使用的是DelayedWorkQueue
上述信息的第2点至关重要,但是限于篇幅,本文将不做深入分析。
接下来我们看看scheduleWithFixedDelay()方法,主要做了3件事情:
- 入参校验,包括空指针、数字范围
- 将Runnable包装成RunnableScheduledFuture
- 延迟执行RunnableScheduledFuture
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { // 1. 入参校验,包括空指针、数字范围 if (command == null || unit == null) throw new NullPointerException(); if (delay <= 0) throw new IllegalArgumentException(); // 2. 将Runnable包装成`RunnableScheduledFuture` ScheduledFutureTask<Void> sft = new ScheduledFutureTask<Void>(command, null, triggerTime(initialDelay, unit), unit.toNanos(-delay)); RunnableScheduledFuture<Void> t = decorateTask(command, sft); sft.outerTask = t; // 3. 延迟执行`RunnableScheduledFuture` delayedExecute(t); return t; }
delayedExecute()这个方法从字面描述来看是延迟执行的意思,我们深入到这个方法里面去看看。
private void delayedExecute(RunnableScheduledFuture<?> task) { // 1. 线程池运行状态判断 if (isShutdown()) reject(task); else { // 2. 将任务添加到队列 super.getQueue().add(task); // 3. 如果任务添加到队列之后,线程池状态变为非运行状态, // 需要将任务从队列移除,同时通过任务的`cancel()`方法来取消任务 if (isShutdown() && !canRunInCurrentRunState(task.isPeriodic()) && remove(task)) task.cancel(false); // 4. 如果任务添加到队列之后,线程池状态是运行状态,需要提前启动线程 else ensurePrestart(); } }
在线程池状态正常的情况下,最终会调用ensurePrestart()方法来完成线程的创建。主要逻辑有两个:
- 当前线程数未达到核心线程数,则创建核心线程
- 当前线程数已达到核心线程数,则创建非核心线程,不会将任务放到阻塞队列中,这一点是和普通线程池是不相同的
/** * Same as prestartCoreThread except arranges that at least one * thread is started even if corePoolSize is 0. */ void ensurePrestart() { int wc = workerCountOf(ctl.get()); // 1. 当前线程数未达到核心线程数,则创建核心线程 if (wc < corePoolSize) addWorker(null, true); // 2. 当前线程数已达到核心线程数,则创建非核心线程, // 2.1 不会将任务放到阻塞队列中,这一点是和普通线程池是不相同的 else if (wc == 0) addWorker(null, false); }
至此,除了DelayedWorkQueue延迟队列的源码还未分析,其他的我们都分析完了。
总结
首先,我们了解了ScheduledExecutorService的基本作用,然后在此基础上写了一些demo来做验证,得到的结果和基本作用是完全相同的。
然后,我们对其内部的实现原理和源代码做了初步的分析,知道了其和普通线程池是不同的地方在于:阻塞队列和创建线程的方式。
相关推荐
- jQuery VS AngularJS 你更钟爱哪个?
-
在这一次的Web开发教程中,我会尽力解答有关于jQuery和AngularJS的两个非常常见的问题,即jQuery和AngularJS之间的区别是什么?也就是说jQueryVSAngularJS?...
- Jquery实时校验,指定长度的「负小数」,小数位未满末尾补0
-
在可以输入【负小数】的输入框获取到焦点时,移除千位分隔符,在输入数据时,实时校验输入内容是否正确,失去焦点后,添加千位分隔符格式化数字。同时小数位未满时末尾补0。HTML代码...
- 如何在pbootCMS前台调用自定义表单?pbootCMS自定义调用代码示例
-
要在pbootCMS前台调用自定义表单,您需要在后台创建表单并为其添加字段,然后在前台模板文件中添加相关代码,如提交按钮和表单验证代码。您还可以自定义表单数据的存储位置、添加文件上传字段、日期选择器、...
- 编程技巧:Jquery实时验证,指定长度的「负小数」
-
为了保障【负小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【负小数】的方法。HTML代码<inputtype="text"class="forc...
- 一篇文章带你用jquery mobile设计颜色拾取器
-
【一、项目背景】现实生活中,我们经常会遇到配色的问题,这个时候去百度一下RGB表。而RGB表只提供相对于的颜色的RGB值而没有可以验证的模块。我们可以通过jquerymobile去设计颜色的拾取器...
- 编程技巧:Jquery实时验证,指定长度的「正小数」
-
为了保障【正小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【正小数】的方法。HTML做成方法<inputtype="text"class="fo...
- jquery.validate检查数组全部验证
-
问题:html中有多个name[],每个参数都要进行验证是否为空,这个时候直接用required:true话,不能全部验证,只要这个数组中有一个有值就可以通过的。解决方法使用addmethod...
- Vue进阶(幺叁肆):npm查看包版本信息
-
第一种方式npmviewjqueryversions这种方式可以查看npm服务器上所有的...
- layui中使用lay-verify进行条件校验
-
一、layui的校验很简单,主要有以下步骤:1.在form表单内加上class="layui-form"2.在提交按钮上加上lay-submit3.在想要校验的标签,加上lay-...
- jQuery是什么?如何使用? jquery是什么功能组件
-
jQuery于2006年1月由JohnResig在BarCampNYC首次发布。它目前由TimmyWilson领导,并由一组开发人员维护。jQuery是一个JavaScript库,它简化了客户...
- django框架的表单form的理解和用法-9
-
表单呈现...
- jquery对上传文件的检测判断 jquery实现文件上传
-
总体思路:在前端使用jquery对上传文件做部分初步的判断,验证通过的文件利用ajaxFileUpload上传到服务器端,并将文件的存储路径保存到数据库。<asp:FileUploadI...
- Nodejs之MEAN栈开发(四)-- form验证及图片上传
-
这一节增加推荐图书的提交和删除功能,来学习node的form提交以及node的图片上传功能。开始之前需要源码同学可以先在git上fork:https://github.com/stoneniqiu/R...
- 大数据开发基础之JAVA jquery 大数据java实战
-
上一篇我们讲解了JAVAscript的基础知识、特点及基本语法以及组成及基本用途,本期就给大家带来了JAVAweb的第二个知识点jquery,大数据开发基础之JAVAjquery,这是本篇文章的主要...
- 推荐四个开源的jQuery可视化表单设计器
-
jquery开源在线表单拖拉设计器formBuilder(推荐)jQueryformBuilder是一个开源的WEB在线html表单设计器,开发人员可以通过拖拉实现一个可视化的表单。支持表单常用控件...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- mybatis plus (70)
- scheduledtask (71)
- css滚动条 (60)
- java学生成绩管理系统 (59)
- 结构体数组 (69)
- databasemetadata (64)
- javastatic (68)
- jsp实用教程 (53)
- fontawesome (57)
- widget开发 (57)
- vb net教程 (62)
- hibernate 教程 (63)
- case语句 (57)
- svn连接 (74)
- directoryindex (69)
- session timeout (58)
- textbox换行 (67)
- extension_dir (64)
- linearlayout (58)
- vba高级教程 (75)
- iframe用法 (58)
- sqlparameter (59)
- trim函数 (59)
- flex布局 (63)
- contextloaderlistener (56)