我创建了一个带有channelInitializer的NettyServer,它在initChannel方法中设置管道。然后我打电话给
b.bindPort(port).sync().channel().pipeline().addLast(handler).
在管道初始化之前添加处理程序,我猜是因为同步只等待创建通道。
问题是,在管道初始化之后,如何在管道末尾添加处理程序?
另外,如何确保在服务器收到任何消息之前添加最后一个处理程序?
感谢。
答案 0 :(得分:0)
本书Netty in Action有以下几点:
您可以在初始化程序中添加多个处理程序:
@Override
protected void initChannel(Channel ch) throws Exception {
ChannelPipeline pipeline = ch.pipeline();
if (client) {
pipeline.addLast("codec", new HttpClientCodec());
} else {
pipeline.addLast("codec", new HttpServerCodec());
}
pipeline.addLast("aggegator",
new HttpObjectAggregator(512 * 1024));
}
ChannelPipeline上的修改可以即时完成,这意味着您甚至可以从另一个ChannelHandler中添加/删除/替换ChannelHandler,或者让它自行删除。这允许编写灵活的逻辑,例如多路复用器
稍后添加处理程序时,可以使用handlerAdded事件存储ChannelHandlerContext供以后使用:
@Override
public void handlerAdded(ChannelHandlerContext ctx) {
this.ctx = ctx;
}
WebSocketServerProtocolHandler可能是寻找动态改变管道的一个很好的例子。