List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage
From source file com.hazelcast.simulator.protocol.handler.ForwardToWorkerHandler.java
/** * A {@link SimpleChannelInboundHandler} to forward a received {@link ByteBuf} to a connected Simulator Worker. */ public class ForwardToWorkerHandler extends SimpleChannelInboundHandler<ByteBuf> { private static final Logger LOGGER = Logger.getLogger(ForwardToWorkerHandler.class);
From source file com.hazelcast.simulator.protocol.handler.MessageConsumeHandler.java
/** * A {@link SimpleChannelInboundHandler} to deserialize a {@link com.hazelcast.simulator.protocol.operation.SimulatorOperation} * from a received {@link SimulatorMessage} and execute it on the configured {@link OperationProcessor}. */ public class MessageConsumeHandler extends SimpleChannelInboundHandler<SimulatorMessage> {
From source file com.hazelcast.simulator.protocol.handler.MessageTestConsumeHandler.java
/** * A {@link SimpleChannelInboundHandler} to to deserialize a {@link com.hazelcast.simulator.protocol.operation.SimulatorOperation} * from a received {@link SimulatorMessage} and execute it on the {@link TestProcessorManager} of the addressed Simulator Test. */ public class MessageTestConsumeHandler extends SimpleChannelInboundHandler<SimulatorMessage> {
From source file com.hazelcast.simulator.protocol.handler.ResponseHandler.java
/** * A {@link SimpleChannelInboundHandler} to set a received {@link Response} as result of the corresponding {@link ResponseFuture}. */ public class ResponseHandler extends SimpleChannelInboundHandler<Response> { private static final Logger LOGGER = Logger.getLogger(ResponseHandler.class);
From source file com.heelenyc.research.netty.protocol.file.FileServerHandler.java
/** * @author Administrator * @date 201439 * @version 1.0 */ public class FileServerHandler extends SimpleChannelInboundHandler<String> {
From source file com.heelenyc.research.netty.protocol.http.fileServer.HttpFileServerHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class HttpFileServerHandler extends SimpleChannelInboundHandler<FullHttpRequest> {
From source file com.heelenyc.research.netty.protocol.http.xml.client.HttpXmlClientHandle.java
/** * @author Administrator * @date 2014216 * @version 1.0 */ public class HttpXmlClientHandle extends SimpleChannelInboundHandler<HttpXmlResponse> {
From source file com.heelenyc.research.netty.protocol.http.xml.server.HttpXmlServerHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class HttpXmlServerHandler extends SimpleChannelInboundHandler<HttpXmlRequest> {
From source file com.heelenyc.research.netty.protocol.udp.ChineseProverbClientHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class ChineseProverbClientHandler extends SimpleChannelInboundHandler<DatagramPacket> {
From source file com.heelenyc.research.netty.protocol.udp.ChineseProverbServerHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class ChineseProverbServerHandler extends SimpleChannelInboundHandler<DatagramPacket> {