reportInterruptAfterWait
生活随笔
收集整理的這篇文章主要介紹了
reportInterruptAfterWait
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
根據checkInterruptWhileWaiting方法返回的中斷標識來進行中斷上報。
如果是THROW_IE,則拋出中斷異常
如果是REINTERRUPT,則重新響應中斷?
private void reportInterruptAfterWait(int interruptMode) throws InterruptedException { if (interruptMode == THROW_IE) throw new InterruptedException(); else if (interruptMode == REINTERRUPT) selfInterrupt(); }?
總結
以上是生活随笔為你收集整理的reportInterruptAfterWait的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: acquireQueued
- 下一篇: Condition总结-await和si