实验探究-ExecutorServiceAPI----未完待续!!!!
admin
2024-02-17 20:28:53
0

1 isShutDown & isTerminated & executorRunnableError & executorRunnableTask

isShutDown:当调用shutdown()或shutdownNow()方法后返回为true。
isTerminated:当调用shutdown()方法后,并且所有提交的任务完成后返回为true;
isTerminated:当调用shutdownNow()方法后,成功停止后返回为true;
如果线程池任务正常完成,都为false

public class ExecutorServiceTest {public static void main(String[] args) throws InterruptedException {
//        isShutdown();
//        isTerminated_1();
//        executorRunnableError();executorRunnableTask();}
}

1 isShutdown

private static void isShutdown() {ExecutorService executorService = Executors.newSingleThreadExecutor();/*** void execute(Runnable command);*/executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}});/*** 如果此执行器已关闭,则返回true。*/System.out.println(executorService.isShutdown());executorService.shutdown();System.out.println(executorService.isShutdown());/*** 执行完 executorService.shutdown(); 之后 还可以执行一个Runnable?不会,抛出异常!!!*/executorService.execute(() -> System.out.println("i will executor after shutdown ..."));/*** false* true* Exception in thread "main" java.util.concurrent.RejectedExecutionException: Task com.thread.excutor.ExecutorServiceTest$$Lambda$2/932583850@cac736f rejected from java.util.concurrent.ThreadPoolExecutor@5e265ba4[Shutting down, pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]* 	at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2063)* 	at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:830)* 	at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1379)* 	at java.util.concurrent.Executors$DelegatedExecutorService.execute(Executors.java:668)* 	at com.thread.excutor.ExecutorServiceTest.isShutdown(ExecutorServiceTest.java:32)* 	at com.thread.excutor.ExecutorServiceTest.main(ExecutorServiceTest.java:9)*/}

2 isTerminated

private static void isTerminated_1() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(1);executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}});executorService.shutdown();System.out.println("executorService.isShutdown() " + executorService.isShutdown());/*** 1、当需要用到isTerminated()函数判断线程池中的所有线程是否执行完毕时候,不能直接使用该函数,*    必须在shutdown()方法关闭线程池之后才能使用,否则isTerminated()永不为TRUE,线程将一直阻塞在该判断的地方,导致程序最终崩溃。* 2、判断全部提交的任务是否完成,当调用shutdown()方法后,并且所有提交的任务完成后返回为true*/System.out.println("1-executorService.isTerminated() " + executorService.isTerminated());System.out.println("executorService.isTerminating() " + executorService.isTerminating());/*** executorService.isShutdown() true* executorService.isTerminated() false* executorService.isTerminating() true*/}

3 executorRunnableError - IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() -> System.out.println(1 / 0)));

private static void executorRunnableError() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(10, new MyThreadFactory());IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() -> System.out.println(1 / 0)));executorService.shutdown();try {executorService.awaitTermination(10, TimeUnit.MINUTES);System.out.println("============over============");} catch (InterruptedException e) {e.printStackTrace();}}private static class MyThreadFactory implements ThreadFactory {private final static AtomicInteger SEQ = new AtomicInteger();@Overridepublic Thread newThread(@NotNull Runnable r) {Thread thread = new Thread(r);thread.setName("My-Thread-" + SEQ.getAndIncrement());/***  void uncaughtException(Thread t, Throwable e);*/thread.setUncaughtExceptionHandler((t, e) -> {System.out.println("The thread " + t.getName() + " executor failed.");System.out.println("=====================");});return thread;}}
/**
The thread My-Thread-6 executor failed.
The thread My-Thread-1 executor failed.
=====================
The thread My-Thread-14 executor failed.
=====================
The thread My-Thread-5 executor failed.
=====================
The thread My-Thread-4 executor failed.
=====================
The thread My-Thread-2 executor failed.
=====================
The thread My-Thread-0 executor failed.
=====================
The thread My-Thread-3 executor failed.
=====================
=====================
The thread My-Thread-7 executor failed.
=====================
The thread My-Thread-12 executor failed.
=====================
============over============Process finished with exit code 0
*/

4 executorRunnableTask-自定义task任务

/***                             | ---->* send  ---> store db ---> 10 | ---->*                             | ---->*/private static void executorRunnableTask() throws InterruptedException {ExecutorService executorService = Executors.newFixedThreadPool(10, new MyThreadFactory());IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() ->{MyTask myTask = new MyTask(i) {@Overridepublic void error(Throwable e) {System.out.println("The no : " + i + " failed, update status to ERROR.");}@Overridepublic void done() {System.out.println("The no : " + i + " successfully, update status to DONE.");}@Overridepublic void doExecutor() {if (i % 3 == 0) {int time = 1 / 0;}}@Overridepublic void doInit() {// do noting ...}};myTask.run();}));executorService.shutdown();executorService.awaitTermination(10, TimeUnit.MINUTES);System.out.println("=======================");/*** The no : 0 failed, update status to ERROR.* The no : 3 failed, update status to ERROR.* The no : 2 successfully, update status to DONE.* The no : 1 successfully, update status to DONE.* The no : 4 successfully, update status to DONE.* The no : 5 successfully, update status to DONE.* The no : 7 successfully, update status to DONE.* The no : 6 failed, update status to ERROR.* The no : 8 successfully, update status to DONE.* The no : 9 failed, update status to ERROR.* =======================*/}private abstract static class MyTask implements Runnable {public final Integer no;public MyTask(Integer no) {this.no = no;}@Overridepublic void run() {try {this.doInit();this.doExecutor();this.done();} catch (Throwable e) {this.error(e);}}public abstract void error(Throwable e);public abstract void done();public abstract void doExecutor();public abstract void doInit();}

2 任务拒绝 testAbortPolicy & testDiscardPolicy & testDiscardOldestPolicy & testCallerRunsPolicy

任务拒绝模块是线程池的保护部分,线程池有一个最大的容量,当线程池的任务缓存队列已满,并且线程池中的线程数目达到maximumPoolSize时,就需要拒绝掉该任务,采取任务拒绝策略,保护线程池。

package com.thread.excutor;import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;public class RejectedExecutionHandlerTest {public static void main(String[] args) {
//        testAbortPolicy();
//        testDiscardPolicy();testDiscardOldestPolicy();
//        testCallerRunsPolicy();}/*** 由提交任务的线程处理该任务*/private static void testCallerRunsPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.CallerRunsPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy " + Thread.currentThread().getName());} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> {System.out.println("xxxx == " +  Thread.currentThread().getName());});/*** xxxx == main* yyyy Thread-1* yyyy Thread-0* yyyy Thread-1** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** 1、丢弃队列最前面的任务,然后重新提交被拒绝的任务。* 2、当任务被拒绝添加时,会抛弃任务队列中最旧的任务也就是最先加入队列的,再把这个新任务添加进去。*    在rejectedExecution先从任务队列种弹出最先加入的任务,空出一个位置,然后再次执行execute方法把任务加入队列。*/private static void testDiscardOldestPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.DiscardOldestPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy " + Thread.currentThread().getName());} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx" + Thread.currentThread().getName()));/*** yyyy Thread-0* yyyy Thread-1* xxxxThread-0** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** 不处理新任务,直接丢弃掉*/private static void testDiscardPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.DiscardPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy");} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx"));/*** yyyy* yyyy* yyyy** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** Exception in thread "main" java.util.concurrent.RejectedExecutionException: Task com.thread.excutor.RejectedExecutionHandlerTest$$Lambda$5/604107971@7637f22 rejected from java.util.concurrent.ThreadPoolExecutor@4926097b[Running, pool size = 2, active threads = 2, queued tasks = 1, completed tasks = 0]* 	at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2063)* 	at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:830)* 	at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1379)* 	at com.thread.excutor.RejectedExecutionHandlerTest.testAbortPolicy(RejectedExecutionHandlerTest.java:36)* 	at com.thread.excutor.RejectedExecutionHandlerTest.main(RejectedExecutionHandlerTest.java:11)* yyyy* yyyy* yyyy** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/private static void testAbortPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,/*** AbortPolicy(默认):直接抛出RejectedExecutionException异常阻止系统正常运行。* 丢弃任务,并抛出异常:最大承载=maximumPoolSize + BlockingQueue*/new ThreadPoolExecutor.AbortPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(10);System.out.println("yyyy");} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx"));}
}

3 AllowCoreThreadTimeOut

allowCoreThreadTimeOut 支持回收核心线程,合适定时任务这种回收。

package com.thread.excutor;import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;public class TestAllowCoreThreadTimeOut {public static void main(String[] args) {
//        getActiveCount();
//        testAllowCoreThreadTimeOut_1();
//        testAllowCoreThreadTimeOut_2();
//        testAllowCoreThreadTimeOut_3();testAllowCoreThreadTimeOut_4();}private static void getActiveCount() {/***     public static ExecutorService newFixedThreadPool(int nThreads) {*         return new ThreadPoolExecutor(nThreads, nThreads,*                                       0L, TimeUnit.MILLISECONDS,*                                       new LinkedBlockingQueue());*     }*/ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);System.out.println("1 - " + executorService.getActiveCount());executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(10);} catch (InterruptedException e) {e.printStackTrace();}});try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2 - " + executorService.getActiveCount());/*** 1 - 0* 2 - 1*/}private static void testAllowCoreThreadTimeOut_1() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** 不会销毁* 1===0* 2===0** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}private static void testAllowCoreThreadTimeOut_2() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** Exception in thread "main" java.lang.IllegalArgumentException: Core threads must have nonzero keep alive times* 	at java.util.concurrent.ThreadPoolExecutor.allowCoreThreadTimeOut(ThreadPoolExecutor.java:1658)* 	at com.thread.excutor.TestU.testAllowCoreThreadTimeOut_2(TestU.java:70)* 	at com.thread.excutor.TestU.main(TestU.java:12)*/}private static void testAllowCoreThreadTimeOut_3() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.setKeepAliveTime(10, TimeUnit.SECONDS);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** 程序会自动退出* 1===0* 2===0** Process finished with exit code 0*/}private static void testAllowCoreThreadTimeOut_4() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.setKeepAliveTime(10, TimeUnit.SECONDS);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));System.out.println("2===" + executorService.getActiveCount());executorService.execute(() -> {try {System.out.println("xxxxxx");TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}});try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("3===" + executorService.getActiveCount());/*** 1===0* 2===5* xxxxxx* 3===1** Process finished with exit code 0*/}
}

相关内容

热门资讯

斗金订购APP贵金属期货投资被...   斗金订购APP的投资者被广告宣传给诱导,注册就送什么现金,然后充值返现金卷等等这些宣传方式,都是...
哈易购APP非法期货交易欺骗投...   哈易购APP宣传可做白银铂金贵金属订购交易,但实际上并没有取得相关交易资质!哈易购APP本质上就...
消息称百度旗下昆仑芯瞄准500... 6 月 29 日消息,据《The Information》昨日援引知情人士消息,百度旗下 AI 芯片...
打造夏日消费新场景 第35届北... 北京商报讯(记者 翟枫瑞)6月29日消息,第35届北京国际燕京啤酒文化节新闻发布会在京举行。本届啤酒...
社保基金持仓数据出炉,一季度增... 最近各大上市公司一季度财报都公开了,咱们国家社保基金的持仓数据也全部曝光。目前社保拿着比亚迪价值44...
36氪首发 | 海思、中兴团队... 作者 | 乔钰杰 编辑 | 袁斯来 硬氪获悉,广州宸思通讯科技有限公司(以下简称“宸思科技”)近日完...
两天蒸发47亿市值!一纸税务通... 一纸税务通知书,能让一家百亿龙头两天蒸发47亿市值。 6月22日,北大荒(600598.SH)公告称...
SK海力士将投资1100万亿韩... SK集团会长崔泰源6月29日在韩国“三大重大计划”发布会上宣布,公司将投资1100万亿韩元扩大半导体...
两只A股,终止上市! 两家A股公司,即将摘牌。 6月29日,退市沪科(600608.SH)公告称,上海证券交易所将在202...
原创 M... 一家成立近十年的自动驾驶公司,在IPO时吸引了14家基石投资者认购近一半的发行股份,其中不乏奔驰、比...
基金忠言|国寿安保滤镜碎,三年... 图片来源:视觉中国 蓝鲸新闻6月29日讯(记者 祁和忠)保险系基金公司国寿安保总经理换人了。 6月2...
三星电机计划加码玻璃基板!相关... 6月29日,玻璃基板概念股午后有所回升, 华工科技(000988.SZ)逼近涨停, 彩虹股份(600...
拉萨海关持续壮大外贸经营主体 ...   新华网拉萨6月28日电(记者蒋梦辰)近日,记者从拉萨海关获悉,今年前5个月,西藏有进出口实绩的外...
机构:二季报临近,医药生物板块... 6月29日,华源证券发布了一篇医药生物行业的研究报告,报告指出,业绩期临近,产业链景气度有望再次迎来...
每日收评科创50放量涨超4.5... 财联社6月29日讯,三大指数全线收红,创业板指探底回升,科创50指数大涨4.61%。沪深两市成交额3...
6月多地土拍结构性升温:深圳单... 进入2026年6月,不少城市核心区地块集中诞生高溢价宗地,热度突出的城市包含深圳、杭州、长沙。 其中...
业绩炸裂!盛达资源半年预盈3.... 6月29日,贵金属矿山龙头盛达资源(000603.SZ)发布 2026 年半年度业绩预告,上半年业绩...
A股午后拉升三大股指收涨:半导... A股三大股指6月29日开盘涨跌互现。早盘沪强深弱,创指一度跌超2%。半导体午后拉升,带动两市上涨,沪...
原创 空... 前言 大家好,我是老金。 这几天,两幅极度割裂的画面放在一起,把我看笑了。 一边是在持续的热浪下,欧...