List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage
From source file com.basho.riak.client.core.netty.RiakHttpMessageHandler.java
/** * * @author Brian Roach <roach at basho dot com> * @since 2.0 */ @Deprecated /** let's forget anything about HTTP! */
From source file com.basho.riak.client.core.netty.RiakPbMessageHandler.java
/** * * @author Brian Roach <roach at basho dot com> * @since 2.0 */ public class RiakPbMessageHandler extends SimpleChannelInboundHandler<RiakPbMessage> {
From source file com.bdtools.doxecute.WorldClockClientHandler.java
public class WorldClockClientHandler extends SimpleChannelInboundHandler<LocalTimes> { private static final Logger logger = Logger.getLogger(WorldClockClientHandler.class.getName()); private static final Pattern DELIM = Pattern.compile("/");
From source file com.bdtools.doxecute.WorldClockServerHandler.java
public class WorldClockServerHandler extends SimpleChannelInboundHandler<Locations> { private static final Logger logger = Logger.getLogger(WorldClockServerHandler.class.getName()); @Override public void channelRead0(ChannelHandlerContext ctx, Locations locations) throws Exception {
From source file com.beeswax.http.handler.GlobalHandler.java
/**
* Global handler handles all HTTP requests received by the server.</br>
* It routes incoming HTTP request to appropriate handler based on request path.</br>
* </br>
* GlobalHandler is designed to handle *stateless* HTTP requests so a single instance can be shared in
* {@link ChannelPipeline}.</br>
From source file com.bloom.zerofs.rest.NettyMessageProcessor.java
/**
* Inbound request handler for Netty.
* <p/>
* It processes a request (in parts) by converting it from Netty specific objects ({@link HttpObject},
* {@link HttpRequest}, {@link HttpContent}) into {@link RestRequest}, a generic request object that all the RESTful
* layers can understand and passes it down the pipeline to a {@link BlobStorageService} through a
From source file com.bosscs.spark.commons.extractor.server.ExtractorServerHandler.java
public class ExtractorServerHandler<T> extends SimpleChannelInboundHandler<Action> { private static final Logger LOG = Logger.getLogger(ExtractorServerHandler.class); private IExtractor<T, ExtractorConfig<T>> extractor;
From source file com.brainlounge.zooterrain.netty.WebSocketServerInboundHandler.java
/** * Handles handshakes and messages */ public class WebSocketServerInboundHandler extends SimpleChannelInboundHandler<Object> { private static final Logger logger = Logger.getLogger(WebSocketServerInboundHandler.class.getName());
From source file com.bt.netty.TelnetServerHandler.java
/** * Handles a server-side channel. */ @Sharable public class TelnetServerHandler extends SimpleChannelInboundHandler<String> {
From source file com.bunjlabs.fuga.network.netty.NettyHttpServerHandler.java
class NettyHttpServerHandler extends SimpleChannelInboundHandler<HttpObject> { private final Logger log = LogManager.getLogger(NettyHttpServerHandler.class); private final FugaApp app; private final String serverVersion;