Interface InterruptHandler
public interface InterruptHandler
A thread interrupt handler. Called when a thread's
interrupt() method is invoked. The handler should
not throw an exception; otherwise user code might end up in an unexpected state.-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleInterrupt(Thread thread) Handle an interrupt condition on the given thread.
-
Method Details
-
handleInterrupt
Handle an interrupt condition on the given thread. This method should not throw an exception.- Parameters:
thread- the thread which was interrupted
-