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());
}