Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding PipelineConfigurator in RxNetty 0.5.x #591

Open
JanakiramanChandrasekran opened this issue Jun 1, 2017 · 1 comment
Open

Adding PipelineConfigurator in RxNetty 0.5.x #591

JanakiramanChandrasekran opened this issue Jun 1, 2017 · 1 comment

Comments

@JanakiramanChandrasekran

How to add PipelineConfigurator in RxNetty 0.5.x? to support gzip. I have given its equivalent in 0.4.x.

private PipelineConfigurator<HttpClientResponse, HttpClientRequest> gzipPipelineConfigurator = new PipelineConfigurator<HttpClientResponse, HttpClientRequest>() {
public void configureNewPipeline(final ChannelPipeline pipeline) {
final ChannelHandler handlers = new HttpContentDecompressor();
pipeline.addLast(handlers);
}
};

@jamesgorman2
Copy link
Collaborator

This will be looked at for 1.x

As an interim see #573

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants