List of usage examples for io.netty.channel ChannelPipeline firstContext
ChannelHandlerContext firstContext();
From source file:io.liveoak.container.traversal.BaseResponder.java
License:Open Source License
protected void resumeRead() { ChannelPipeline pipeline = ctx.pipeline(); if (pipeline == null) { return;// w w w.jav a 2s . c om } ChannelHandlerContext context = pipeline.firstContext(); if (context == null) { return; } context.read(); }