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.


Method Summary
 void handleInterrupt(java.lang.Thread thread)
          Handle an interrupt condition on the given thread.
 

Method Detail

handleInterrupt

void handleInterrupt(java.lang.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 © 2011. All Rights Reserved.