1

I have been using Apache MINA and am learning Netty. I have used the MINA cumulative encoder/decoder in the past and I am interested to see if Netty has similar functionality. I looked through the API and did not see anything.

1 Answers1

1

I think you are looking for the FrameDecoder [1] or ReplayingDecoder [2].

[1] http://netty.io/docs/stable/api/org/jboss/netty/handler/codec/frame/FrameDecoder.html

[2] http://netty.io/docs/stable/api/org/jboss/netty/handler/codec/replay/ReplayingDecoder.html

Norman Maurer
  • 23,104
  • 2
  • 33
  • 31