Home > Java > javaTutorial > body text

How to Ensure Proper Shutdown of Java ExecutorServiceExecutors?

Susan Sarandon
Release: 2024-10-24 07:32:30
Original
665 people have browsed it

How to Ensure Proper Shutdown of Java ExecutorServiceExecutors?

Ensuring Proper Shutdown of Java ExecutorService

Executors in Java provide a convenient way to manage asynchronous tasks. However, shutting down an executor can pose challenges, especially when dealing with long-running or unresponsive tasks.

Problem:

Consider the code snippet:

<code class="java">ExecutorService exec = Executors.newSingleThreadExecutor();
// ... create and submit tasks
exec.shutdownNow();</code>
Copy after login

After all tasks complete, exec.isTerminated() remains false, indicating that some tasks may not have terminated properly.

Solution:

Oracle's recommended approach is the shutdownAndAwaitTermination method:

<code class="java">void shutdownAndAwaitTermination(ExecutorService pool) {
   pool.shutdown();
   try {
     // Wait for existing tasks to terminate (up to 60 seconds)
     if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
       pool.shutdownNow();
       // Wait for cancelled tasks to respond (up to 60 seconds)
       if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
           System.err.println("Pool did not terminate");
       }
     }
   } catch (InterruptedException ie) {
     pool.shutdownNow();
     Thread.currentThread().interrupt();
   }
}</code>
Copy after login

Summary of Shutdown Methods:

  • shutdown(): Disables new task submissions but allows current tasks to execute.
  • shutdownNow(): Attempts to forcefully terminate all executing and waiting tasks.
  • awaitTermination(long timeout, TimeUnit unit) throws InterruptedException: Blocks until all tasks complete, a timeout occurs, or the thread is interrupted.

By utilizing the appropriate shutdown methods, you can ensure that your ExecutorService terminates properly, releasing resources and ensuring a clean shutdown.

The above is the detailed content of How to Ensure Proper Shutdown of Java ExecutorServiceExecutors?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!