Cleanup http2 example code to make clear it is fine to just use ctx directly. (#9276)
Motivation: In our example we did use pipeline.context(this) to obtain the context of the handler while it was already passed in via ctx. This could confuse users and give the impression that the context is no the same. Modifications: Just use ctx directly. Result: Fix confusion in example code. This was brought up on stackoverflow: https://stackoverflow.com/questions/56711128/when-is-a-channelhandlercontext-handed-to-a-channelhandler-not-that-channelhandl
This commit is contained in:
parent
2d72a7c561
commit
36b2477c30
@ -96,8 +96,7 @@ public class Http2ServerInitializer extends ChannelInitializer<SocketChannel> {
|
|||||||
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
||||||
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
||||||
ChannelPipeline pipeline = ctx.pipeline();
|
ChannelPipeline pipeline = ctx.pipeline();
|
||||||
ChannelHandlerContext thisCtx = pipeline.context(this);
|
pipeline.addAfter(ctx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
||||||
pipeline.addAfter(thisCtx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
|
||||||
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
||||||
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
||||||
}
|
}
|
||||||
|
@ -98,8 +98,7 @@ public class Http2ServerInitializer extends ChannelInitializer<SocketChannel> {
|
|||||||
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
||||||
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
||||||
ChannelPipeline pipeline = ctx.pipeline();
|
ChannelPipeline pipeline = ctx.pipeline();
|
||||||
ChannelHandlerContext thisCtx = pipeline.context(this);
|
pipeline.addAfter(ctx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
||||||
pipeline.addAfter(thisCtx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
|
||||||
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
||||||
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
||||||
}
|
}
|
||||||
|
@ -97,8 +97,7 @@ public class Http2ServerInitializer extends ChannelInitializer<SocketChannel> {
|
|||||||
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
// If this handler is hit then no upgrade has been attempted and the client is just talking HTTP.
|
||||||
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
System.err.println("Directly talking: " + msg.protocolVersion() + " (no upgrade was attempted)");
|
||||||
ChannelPipeline pipeline = ctx.pipeline();
|
ChannelPipeline pipeline = ctx.pipeline();
|
||||||
ChannelHandlerContext thisCtx = pipeline.context(this);
|
pipeline.addAfter(ctx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
||||||
pipeline.addAfter(thisCtx.name(), null, new HelloWorldHttp1Handler("Direct. No Upgrade Attempted."));
|
|
||||||
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
pipeline.replace(this, null, new HttpObjectAggregator(maxHttpContentLength));
|
||||||
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
ctx.fireChannelRead(ReferenceCountUtil.retain(msg));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user