List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage
From source file cn.songm.songmq.core.president.AbstractMessageHandler.java
/**
* ??
*
* @author zhangsong
* @since 0.1, 2017-2-25
* @version 0.1
From source file cn.wcl.test.netty.HttpUploadClientHandler.java
/** * Handler that just dumps the contents of the response from the server */ public class HttpUploadClientHandler extends SimpleChannelInboundHandler<HttpObject> { private boolean readingChunks;
From source file cn.yesway.demo.book.protocol.http.fileServer.HttpFileServerHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class HttpFileServerHandler extends SimpleChannelInboundHandler<FullHttpRequest> {
From source file cn.yesway.demo.book.protocol.http.xml.client.HttpXmlClientHandle.java
/** * @author Administrator * @date 2014216 * @version 1.0 */ public class HttpXmlClientHandle extends SimpleChannelInboundHandler<HttpXmlResponse> {
From source file cn.yesway.demo.book.protocol.http.xml.server.HttpXmlServerHandler.java
/** * @author lilinfeng * @date 2014214 * @version 1.0 */ public class HttpXmlServerHandler extends SimpleChannelInboundHandler<HttpXmlRequest> {
From source file cn.zyf.handler.ObjectStorageHandler.java
/** * Created by zhangyufeng on 2016/10/24. */ public class ObjectStorageHandler extends SimpleChannelInboundHandler<RequestInfo> { private static Logger LOG = LoggerFactory.getLogger(ObjectStorageHandler.class);
From source file co.paralleluniverse.comsat.webactors.netty.WebActorHandler.java
/** * @author circlespainter */ public class WebActorHandler extends SimpleChannelInboundHandler<Object> { protected static final ScheduledExecutorService ts = Executors .newScheduledThreadPool(Runtime.getRuntime().availableProcessors());
From source file co.rsk.net.discovery.UDPChannel.java
public class UDPChannel extends SimpleChannelInboundHandler<DiscoveryEvent> { static final Logger logger = LoggerFactory.getLogger(UDPChannel.class); private Channel channel;
From source file co.rsk.rpc.netty.JsonRpcWeb3ServerHandler.java
@ChannelHandler.Sharable public class JsonRpcWeb3ServerHandler extends SimpleChannelInboundHandler<ByteBufHolder> { private static final Logger LOGGER = LoggerFactory.getLogger("jsonrpc"); private final ObjectMapper mapper = new ObjectMapper();
From source file co.rsk.rpc.netty.RskJsonRpcHandler.java
/**
* This handler decodes inbound messages and dispatches valid JSON-RPC requests.
*
* Note that we split JSON-RPC handling in two because jsonrpc4j wasn't able to handle the PUB-SUB model.
* Eventually, we might want to implement all methods in this style and remove jsonrpc4j.
*