Skip to content
Advertisement

Thread interruptions are not caught by InterruptedException

I have a controller and a thread that does some work, the controller has an interrupt function that shuts off the threads in emergency situation.

the skeleton of my code looks something like this:

JavaScript

However, when interrupt is called, the InterruptedException is never caught. What am I doing wrong here?

Advertisement

Answer

The only possibilities that come to mind:

  • you are not interrupting the thread (are you sure th.interrupt() is called?)
  • you interrupt another thread
  • the thread gets interrupted but there is a problem in EmergencyProcedures that makes you think it was not interrupted
  • you never start the thread and therefore you can’t interrupt it.
  • DoSomeWork() ignores the interruption
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement