必威体育Betway必威体育官网
当前位置:首页 > IT技术

scheduleAtFixedRate 与 scheduleWithFixedDelay 的区别

时间:2019-11-05 21:15:40来源:IT技术作者:seo实验室小编阅读:64次「手机版」
 

scheduleatfixedrate

scheduleatfixedrate ,是以上一个任务开始的时间计时,period时间过去后,检测上一个任务是否执行完毕,如果上一个任务执行完毕,则当前任务立即执行,如果上一个任务没有执行完毕,则需要等上一个任务执行完毕后立即执行。

scheduleWithFixedDelay,是以上一个任务结束时开始计时,period时间过去后,立即执行。

重点

两个方法以不同的时间点作为参考。

例子:


package com.yuankai.t1.thread;
 
import java.util.concurrent.Executors;
import java.util.concurrent.scheduledexecutorservice;
import java.util.concurrent.TimeUnit;
 
public class ScheduleExecutorServiceTest {
 
	public static void main(String[] args) {
		ScheduleExecutorServiceTest test = new ScheduleExecutorServiceTest();
		test.testwithFixedDelay();
	}
	
	private ScheduledExecutorService executor;
	
	public ScheduleExecutorServiceTest() {
		executor = Executors.newScheduledThreadPool(4);
	}
	
	public void testAtFixedRate() {
		executor.scheduleAtFixedRate(new Runnable() {
			
			public void run() {
				System.out.println("====");
				try {
					Thread.sleep(10000);
					System.out.println("执行完毕");
				} catch (InterruptedException e) {
					e.printstacktrace();
				}
			}
		}, 1000, 3000, TimeUnit.MILLISECONDS);
	}
	
	public void testWithFixedDelay() {
		executor.scheduleWithFixedDelay(new Runnable() {
			
			public void run() {
				System.out.println("====");
				try {
					int i = 1 / 0;
				} catch (Exception e) {
					e.printStackTrace();
				}
				/*
				try {
					Thread.sleep(10000);
					System.out.println("执行完毕");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
				*/
			}
		}, 1000, 3000, TimeUnit.MILLISECONDS);
	}
 
}

注意:

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

文章最后发布于: 2018-07-31 11:32:44

相关阅读

iPad mini5和iPad 2018哪款值得入手 iPad mini5和iPad

现在虽说手机的功能也是逐渐的强大,但是基于便于携带这个理念,所以手机的体积需要有所控制,但是视野的局限性上就比较大,毕竟体积只有

atoi()和stoi()的区别----数字字符串的处理

相同点: ①都是C++的字符处理函数,把数字字符串转换成int输出 ②头文件都是#include<cstring> 不同点: ①atoi()的参数是 const

html,htm,html5,shtml的区别

HTML是一种标记语言,它的全称为:"Hypertext Markup Language",超文本标记语言的意思。 htm是来源于老的8.3文件格式,DOS操作系统只

理论基础知识之————KB Kb Kbps 相关单位的区别和

换算公式 8bit(位)=1Byte(字节)1024Byte(字节)=1KB1024KB=1MB1024MB=1GB1024GB=1TB 容量是大写的  B 而传输的速度是小写的

dumps,loads与dump,load的区别

可以把dumps和loads对比来看 json.dumps() 是将python的dict数据类型转换为json字符串 json.loads() 是将json字符串转换为dict

分享到:

栏目导航

推荐阅读

热门阅读