91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java線程池怎么使用AbortPolicy策略

發布時間:2022-06-30 09:57:59 來源:億速云 閱讀:435 作者:iii 欄目:開發技術

本篇內容介紹了“Java線程池怎么使用AbortPolicy策略”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

線程池ThreadPoolExecutor的拒絕策略

線程池中的線程資源全部被占用時,對新添加的Task任務有不同的處理策略,在默認的情況下,

ThreadPoolExecutor類中有4種不同的處理方式:

  • AbortPolicy:當任務添加到線程池中被拒絕時,它將拋出RejectExecutionException異常。

  • CallerRunsPolicy:當任務添加到線程池中被拒絕時,會使用調用線程池的Thread線程對象處理被拒絕的任務。

  • DiscardOldestPolicy: 當任務添加到線程池中被拒絕時,線程池會放棄等待隊列中最舊的未處理任務,然后將被拒絕的任務添加到等待隊列中。

  • DiscardPolicy:當任務添加到線程池中被拒絕時,線程池將丟棄被拒絕的任務。

AbortPolicy策略

AbortPolicy策略是當任務添加到線程池中被拒絕時,它將拋出RejectedExecutionException異常。

線程執行代碼如下:

public class FirstRunnable implements Runnable {
    @Override
    public void run() {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm:ss");
        try {
            System.out.println(Thread.currentThread().getName() +"  開始時間:"+simpleDateFormat.format(new Date()));
            Thread.sleep(1000);
            System.out.println(Thread.currentThread().getName() +"  結束時間:"+simpleDateFormat.format(new Date()));
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

運行類代碼如下:

public class AbortPolicyRun {
    public static void main(String[] args) {
        FirstRunnable firstRunnable = new FirstRunnable();
        ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(2, 3, 5, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(2), new ThreadPoolExecutor.AbortPolicy());
        for (int i = 0; i < 7 ; i++) {
            threadPoolExecutor.execute(firstRunnable);
        }
    }
}

運行結果如下:

Exception in thread "main" java.util.concurrent.RejectedExecutionException: Task com.ozx.concurrentprogram.executor.service.FirstRunnable@6c629d6e rejected from java.util.concurrent.ThreadPoolExecutor@5f5a92bb[Running, pool size = 3, active threads = 3, queued tasks = 2, 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.ozx.concurrentprogram.executor.controller.AbortPolicyRun.main(AbortPolicyRun.java:19)
pool-1-thread-3  開始時間:16:20:27
pool-1-thread-1  開始時間:16:20:27
pool-1-thread-2  開始時間:16:20:27
pool-1-thread-2  結束時間:16:20:28
pool-1-thread-2  開始時間:16:20:28
pool-1-thread-1  結束時間:16:20:28
pool-1-thread-1  開始時間:16:20:28
pool-1-thread-3  結束時間:16:20:28
pool-1-thread-1  結束時間:16:20:29
pool-1-thread-2  結束時間:16:20:29

使用AbortPolicy策略后,線程任務數量超出線程池最大線程數時,線程池將拋出java.util.concurrent.RejectedExecutionException異常。

“Java線程池怎么使用AbortPolicy策略”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贵溪市| 佳木斯市| 三都| 富锦市| 玉田县| 吴桥县| 荔波县| 桓台县| 板桥市| 土默特左旗| 息烽县| 宁武县| 井冈山市| 富源县| 鸡东县| 洛阳市| 江川县| 滦南县| 大厂| 巴楚县| 麻栗坡县| 海南省| 梁山县| 望奎县| 偏关县| 曲水县| 新建县| 乐都县| 郸城县| 扶余县| 杨浦区| 克拉玛依市| 云龙县| 南京市| 福泉市| 鲜城| 建宁县| 玛沁县| 黄大仙区| 鹰潭市| 横峰县|