If a runnable hangs while running in a threadpoolexecutor, is there a way to find out that it has hung and kill the runnable? Will the getActiveCount method consider a runnable that's hanging as "actively executing"?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no safe way to kill a thread which is busy (other than running it in another process and killing it) You can detect if a thread is taking to long by waiting for the result with a timeout. You can also add a task to cancel the task after a timeout, however this will only interrupt a thread's task, not kill it. You are better off determining why the task "hangs" and fixing the code so it doesn't. When you start a task you store Thread.currentThread() is a share variable. You can then take a getStackTrace() periodically to determine what it is doing and log it. |
||||
|
|
cancelwhich itself callsinterrupton the thread. The catch is that for interrupt to do something, you have to program it yourself in therunmethod. So your "hanging" thread needs to be checking the interrupt periodically (or be inside a method such asThread.sleepthat wakes up on interrupt). – toto2 Jul 16 '11 at 0:06