1

我正在尝试 4.0.0 Alpha1。当我尝试运行 FactorialServer 示例时,我在方法 BigIntegerDecoder.decode中发现in.readableBytes()总是返回 0。调试后,我发现在

public void inboundBufferUpdated(ChannelHandlerContext ctx, ByteBuf in) throws Exception {
    callDecode(ctx, in, ctx.nextOutboundByteBuffer());
}

应该是吗?

 public void inboundBufferUpdated(ChannelHandlerContext ctx, ByteBuf in) throws Exception {
    callDecode(ctx, in, ctx.nextInboundByteBuffer());
}
4

1 回答 1

1

是的,它是一个错误。我会尽快修复它。谢谢!

于 2012-07-18T07:13:32.140 回答