ServerBootstrap.bind(final SocketAddress localAddress) メソッドで Netty のソース コードを読んでいますが、InterruptedException がスローされたときに無限ループが発生する可能性があることがわかりました (以下のコードを確認してください)、私の理解は正しいですか?
do {
try {
future = futureQueue.poll(Integer.MAX_VALUE, TimeUnit.SECONDS);
} catch (InterruptedException e) {
interrupted = true;
}
} while (future == null);