java优雅地关闭线程池

java如何优雅地关闭线程池

记录下来,以后忘记了就看一下。

根据ExecutorService JavaDoc中的示例方法优雅地关闭线程池并了解其中的工作原理,不深入探究。

    /**
     * 优雅关闭线程池
     * 按照ExecutorService JavaDoc示例代码编写的Graceful Shutdown方法.
     * 先使用shutdown, 停止接收新任务并尝试完成所有已存在任务.
     * 如果超时, 则调用shutdownNow, 取消在workQueue中Pending的任务,并中断所有阻塞函数.
     * 如果仍然超時,則強制退出.
     * 另对在shutdown时线程本身被调用中断做了处理.
     * @param pool
     * @param shutdownTimeout
     * @param shutdownNowTimeout
     * @param timeUnit
     */
    public static void gracefulShutdown(ExecutorService pool, int shutdownTimeout, int shutdownNowTimeout,
                                        TimeUnit timeUnit) {
        pool.shutdown(); // Disable new tasks from being submitted 停止接收新任务
        try {
            // Wait a while for existing tasks to terminate
            // 等待正在执行的任务终止
            if (!pool.awaitTermination(shutdownTimeout, timeUnit)) {
            	//正在等待执行的任务不会被执行,并且尝试停止正在执行的任务
                pool.shutdownNow(); // Cancel currently executing tasks
                // Wait a while for tasks to respond to being cancelled 等待正在执行的任务终止
                if (!pool.awaitTermination(shutdownNowTimeout, timeUnit)) {
                    System.err.println("Pool did not terminated");
                }
            }
        } catch (InterruptedException ie) {
            // (Re-)Cancel if current thread also interrupted
            // 如果调用awaitTermination方法的时候,阻塞被其他线程中止,就使用shutdownNow方法来尝试中止正在执行的任务
            pool.shutdownNow();
            // Preserve interrupt status 重置中断标志
            Thread.currentThread().interrupt();
        }
    }

你可能感兴趣的:(线程池,java,多线程,thread,并发编程)