在HttpResponseDecoder之后有没有办法使用ReplayingDecoder?

时间:2013-11-11 18:57:12

标签: netty

我正在尝试将HTTP响应内容中的字节解码为一系列记录。我希望在以下管道中使用ReplayingDecoder HttpResponseDecoder - > ReplayingDecoder。但是,我不能,因为ReplayingDecoder.decode()需要ByteBuf,但HttpResponseDecoder生成HttpContent对象。有没有办法在这种情况下使用ReplayingDecoder?

1 个答案:

答案 0 :(得分:0)

Jus使用HttpObjectAggregator。这将确保您只接收FullHttpResponse对象,这些对象保存ByteBuf中的完整有效负载。