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 Detail

      • handleInterrupt

        void handleInterrupt​(Thread thread)
        Handle an interrupt condition on the given thread. This method should not throw an exception.
        Parameters:
        thread - the thread which was interrupted