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