あなたは中断が発生したことを知っている発信者が必要ですが、あなたができない場合、私はあなたがスレッドを再度中断あなたはInterruptedExceptionsをキャッチ状況に興味を持っていますが、例の下どのような状況で割り込みステータスを保持していますか?
try{
//Some code
} catch (InterruptedException ie) {
// (Re-)Cancel if current thread also interrupted
pool.shutdownNow();
// Preserve interrupt status
Thread.currentThread().interrupt();
}
何かする必要があるときは? – Guy