-1

我不确定 AbstractOioByteChannel.doWrite(ChannelOutboundBuffer in) 中的无限循环是否正确,netty 版本 4.0.9 谢谢,-Igor

4

1 回答 1

0

如果没有收到消息,您似乎需要添加一个循环中断(下面的粗体)

    *for (;;) {
        Object msg = in.current();
        **if (msg == null) {
            break;
        }**
        if (msg instanceof ByteBuf) {
            ....
        } else if (msg instanceof FileRegion) {
            ...
        } else {
            in.remove(new UnsupportedOperationException(
                    "unsupported message type: " + StringUtil.simpleClassName(msg)));
        }
    }*
于 2013-09-30T07:27:39.747 回答