我正在尝试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());
}
答案 0 :(得分:1)
是的它是一个bug ..我会尽快修复它。谢谢!