实验探究-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*/}
}

相关内容

热门资讯

法国兴业银行股价下跌3% 每经AI快讯,5月12日,法国兴业银行股价下跌3%。 每日经济新闻 【免责声明】本文仅代表作者本人观...
独家 | 低空经济,重磅收购发... 作者 | 铅笔道 惜文 编辑 | 铅笔道 邹蔚 王方 最近,低空经济赛道,发生一起重磅并购。低空经济...
购房收据挂失登报流程 购房收据挂失登报流程并不复杂,首先需要确认登报的具体要求和所需材料。登报是通过报纸等公开媒体发布声明...
【公告复盘】PCB+CPO+覆... 【A股收盘|沪指跌0.25% 半导体设备、特高压概念股活跃】四大股指今日收盘涨跌不一,沪指跌0.25...
原创 货... 导语:银行板块极致低估值隐含安全边际,且附带估值修复期权。 01 诸神的黄昏 货币基金和黄金,这些曾...
资本“救火”一年后,大润发的调... 出品 | 创业最前线 付艳翠 近期,随着CEO闪电失联与董事会主席“零元救火”的戏剧性一幕接连上演...
59岁浙江前首富直播间跳团舞,... 美特斯邦威曾是80、90后青春记忆里绕不开的符号,那句“不走寻常路”更是响彻街头巷尾。2008年上市...
周琦18+8杰曼三双 北京2-... 【搜狐体育战报】北京时间5月12日CBA季后赛,主场作战的北京北汽以88-73击败广东东阳光,北京首...
汽油价格持续攀升!美国4月CP... 受伊朗战争推动的汽油价格持续攀升,美国4月通胀继续加速。战争影响正在随着能源成本飙升而冲击美国经济。...
老铁流量见顶,快手要靠可灵20... 来源:市场资讯 (来源:野马财经) 可灵年入10亿,仅占快手的0.73%。 作者|刘钦文 编辑|高...
美国4月未季调CPI同比升3.... 美国4月未季调CPI同比升3.8%,前值升3.3%; (本文来自第一财经)
挪威财长:主权财富基金在道德撤... 来源:环球市场播报 当全球最大的挪威规模达2.2万亿美元的主权财富基金因伦理考量出售某公司股份时,...
1300亿,快手可灵酝酿“单飞... 来源:猎云精选,文/韩文静 AI视频生成赛道,从来不缺资本故事。 近日,快手旗下视频生成大模型“可灵...
光模块龙头股价一年涨超990%... 5月12日,光模块龙头中际旭创(300308.SZ)股价大涨,盘中突破1000元,成为继爱美客(30...
小红书或再回购期权,半年回购价... 小红书再传期权回购。近日,有消息称小红书开启了2026年第一轮期权回购,有离职员工爆料称最新的回购价...
重仓科技板块基金狂飙,超160... 打开基金账户,你的净值创新高了吗? 5月A股震荡攀高,市场情绪悄然回暖,公募基金的赚钱效应同步释放。...
突发!韩股跳水 韩股跳水。 5月12日盘中,韩国股市走低,截至发稿,韩国KOSPI指数转跌超3%,此前一度涨超2.4...
【IPO速递】东圣实业:布局磷... 5月12日,湖北东圣实业股份有限公司(下称“东圣实业”)首次向港股市场发起冲刺,计划登陆港交所主板,...
跨国巨头再现百亿美元级“天价”... 5月12日,恒瑞医药宣布,百时美施贵宝(BMS)与恒瑞医药达成授权协议,BMS将向恒瑞医药支付最高达...
焦点复盘沪指缩量调整跌0.25... 财联社5月12日讯,今日57股涨停,23股炸板,封板率71%。大唐发电5连板,通鼎互联、宝鼎科技4连...