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 に答える