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 com.just.server.http.http.WebSocketFrameHandler.java

public class WebSocketFrameHandler extends SimpleChannelInboundHandler<WebSocketFrame> {

    private static final Logger logger = LoggerFactory.getLogger(WebSocketFrameHandler.class);

    private int timeInterval = 1;

From source file com.just.server.http.websocketx.benchmarkserver.WebSocketServerHandler.java

/**
 * Handles handshakes and messages
 */
public class WebSocketServerHandler extends SimpleChannelInboundHandler<Object> {

    private static final String WEBSOCKET_PATH = "/websocket";

From source file com.kalixia.ha.cloud.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 com.kalixia.ha.hub.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 com.kingmed.bidir.gateway.server.GatewayServerHandler.java

/**
 * Handles a server-side channel.
 */
@Slf4j
public class GatewayServerHandler extends SimpleChannelInboundHandler<String> {

From source file com.krux.beacon.listener.client.tests.TelnetClientHandler.java

/**
 * Handles a client-side channel.
 */
@Sharable
public class TelnetClientHandler extends SimpleChannelInboundHandler<String> {

From source file com.l2jmobius.commons.network.ChannelInboundHandler.java

/**
 * @author Nos
 * @param <T>
 */
public abstract class ChannelInboundHandler<T extends ChannelInboundHandler<?>>
        extends SimpleChannelInboundHandler<IIncomingPacket<T>> {

From source file com.lampard.netty4.protocol.file.FileServerHandler.java

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

From source file com.lampard.netty4.protocol.http.fileServer.HttpFileServerHandler.java

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

From source file com.lampard.netty4.protocol.http.xml.client.HttpXmlClientHandle.java

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