@Override
public void initChannel(final SocketChannel ch) throws Exception {
final ChannelPipeline p = ch.pipeline();
//p.addLast("timeout", new IdleStateHandler(0, 0, 60)); // TODO: configurable
p.addLast("httpcodec", new HttpClientCodec());
p.addLast("inflater", new HttpContentDecompressor());
//p.addLast("aggregator", new HttpObjectAggregator(1048576));
p.addLast("qdecoder", queryResultDecoder);
// p.addLast("logging", loggingHandler);
}
HubManager.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:HeliosStreams
作者:
评论列表
文章目录