Example usage for io.netty.channel SimpleChannelInboundHandler subclass-usage

List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel SimpleChannelInboundHandler subclass-usage.

Usage

From source file be.yildizgames.module.network.netty.server.AbstractSessionMessageHandler.java

/**
 * @author Grgory Van den Borre
 */
public abstract class AbstractSessionMessageHandler<T> extends SimpleChannelInboundHandler<T> {

    protected final AbstractHandler handler;

From source file bean.lee.demo.netty.learn.http.file.HttpStaticFileServerHandler.java

/**
 * A simple handler that serves incoming HTTP requests to send their respective
 * HTTP responses. It also implements {@code 'If-Modified-Since'} header to take
 * advantage of browser cache, as described in
 * <a href="http://tools.ietf.org/html/rfc2616#section-14.25">RFC 2616</a>.
 *

From source file bftsmart.communication.client.netty.NettyClientServerCommunicationSystemClientSide.java

/**
 *
 * @author Paulo
 */
@Sharable
public class NettyClientServerCommunicationSystemClientSide extends SimpleChannelInboundHandler<TOMMessage>

From source file bftsmart.communication.client.netty.NettyClientServerCommunicationSystemServerSide.java

/**
 *
 * @author Paulo
 */
@Sharable
public class NettyClientServerCommunicationSystemServerSide extends SimpleChannelInboundHandler<TOMMessage>

From source file books.netty.protocol.file.FileServerHandler.java

/**
 * @author Administrator
 * @version 1.0
 * @date 201439
 */
public class FileServerHandler extends SimpleChannelInboundHandler<String> {

From source file books.netty.protocol.http.fileServer.HttpFileServerHandler.java

/**
 * @author lilinfeng
 * @version 1.0
 * @date 2014214
 */
public class HttpFileServerHandler extends SimpleChannelInboundHandler<FullHttpRequest> {

From source file books.netty.protocol.http.xml.client.HttpXmlClientHandle.java

/**
 * @author Administrator
 * @version 1.0
 * @date 2014216
 */
public class HttpXmlClientHandle extends SimpleChannelInboundHandler<HttpXmlResponse> {

From source file books.netty.protocol.http.xml.server.HttpXmlServerHandler.java

/**
 * @author lilinfeng
 * @version 1.0
 * @date 2014214
 */
public class HttpXmlServerHandler extends SimpleChannelInboundHandler<HttpXmlRequest> {

From source file books.netty.protocol.udp.ChineseProverbClientHandler.java

/**
 * @author lilinfeng
 * @version 1.0
 * @date 2014214
 */
public class ChineseProverbClientHandler extends SimpleChannelInboundHandler<DatagramPacket> {

From source file books.netty.protocol.udp.ChineseProverbServerHandler.java

/**
 * @author lilinfeng
 * @version 1.0
 * @date 2014214
 */
public class ChineseProverbServerHandler extends SimpleChannelInboundHandler<DatagramPacket> {