这是Netty 4.0.0 Alpha1中的错误吗?

时间:2012-07-18 03:29:45

标签: netty

我正在尝试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());
}

1 个答案:

答案 0 :(得分:1)

是的它是一个bug ..我会尽快修复它。谢谢!