Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这两个事件都由 Netty 框架触发,带有 ChannelBuffer 的句柄,并且期望客户端将以某种方式处理缓冲区中的字节。
是否有任何特定的使用/场景,其中一个优于另一个?
您应该查看 FrameDecoder javadocs。简而言之,如果您需要“缓冲”数据直到接收到帧,您想使用 FrameDecoder。FrameDecoder 将处理它,因此管道中的其他处理程序(在它之后)将只接收一个完整的帧。