org.jboss.threads
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.
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
Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.