[b]Interface ChannelPipeline[/b]
A list of ChannelHandlers which handles or intercepts inbound events and outbound operations of a Channel. ChannelPipeline implements an advanced form of the Intercepting Filter pattern to give a user full control over how an event is handled and how the ChannelHandlers in a pipeline interact with each other.
public interface ChannelPipeline extends Iterable<Map.Entry<String,ChannelHandler>>A list of ChannelHandlers which handles or intercepts inbound events and outbound operations of a Channel. ChannelPipeline implements an advanced form of the Intercepting Filter pattern to give a user full control over how an event is handled and how the ChannelHandlers in a pipeline interact with each other.
本文介绍ChannelPipeline接口,它是Channel处理器的集合,用于处理双向事件及操作。ChannelPipeline实现了拦截过滤器模式,使用户能够完全控制事件如何被处理以及管道中各处理器如何相互作用。

被折叠的 条评论
为什么被折叠?



