This is the demo code for the Stackoverflow question Interrupting Thread with ThreadPoolExecutor and ArrayBlockingQueue not working.
The demo code implements a shutdown hook. If you one of this applications from command line (not from eclipse)
and press CRTL-C. The shutdown hook will interrupt the main running thread and wait up to
10 Seconds for the main thread to finish. Depending on the time where you press CRTL-C the
thread will be interrupted in the ThreadPool .submit()
or the ThreadPool .awaitTermination()
part.
Normally the Thread will be interrupted and the ThreadPool .shutdownNow()
will tear down the rest of the threads
queued. No Problem so far.
If I start a runner thread with a Thread.sleep()
with a ThreadPoolExecutor
using a ArrayBlockingQueue
or
LinkedBlockingDeque
the code will not interrupt as expected. Only one of the running sub thread is interrupted,
but no the main thread. The program is running until the shutdown hook will exit after 10 seconds.
The Demo Code consists of 4 independent java files, each has all the code it needs and can run on it's own. It is the minified version of the problem.
The Demo Code consists of 4 independent java files, each has all the code it needs and can run on it's own. The
application can be run in Eclipse. I created a ThreadInterupter
which is interrupting the main thread after
15 seconds. This code gives some extra information und configuration variables.
Answer by Calculator on StackOverflow with Reference to the excellent Answer by aioobe
The original Runner Thread:
try {
Thread.sleep(1000);
System.out.println("sub tread ran");
} catch (final InterruptedException e) {
System.out.println("SUB THREAD INTERRUPTED");
}
The modified Runner Thread:
try {
Thread.sleep(1000);
System.out.println("sub tread ran");
} catch (final InterruptedException e) {
System.out.println("SUB THREAD INTERRUPTED");
Thread.currentThread().interrupt();
}
- Check out GIT or download single java file.
- Build with Eclipse or javac
- Open command line and change directory to the java bin directory
- Run with
java ThreadPoolInterruptedSleep
- Interrupt with CRTL-C or wait 15 seconds until
ThreadInterupter
strikes.
The Demo Video is showing the interrupting process. First the failed interrupt from ThreadPoolInterruptedSleep
and
second the the successful interrupt from ThreadPoolInterruptedMath
.