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

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

Introduction

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

Usage

From source file org.betawares.jorre.handlers.server.ServerExceptionHandler.java

/**
 * Handles server-side exceptions that are not explicitly handled.
 * 
 */
@Sharable
public class ServerExceptionHandler extends ChannelHandlerAdapter {

From source file org.Client.HeartBeatReqHandler.java

/**
 * @author Lilinfeng
 * @date 2014315
 * @version 1.0
 */
public class HeartBeatReqHandler extends ChannelHandlerAdapter {

From source file org.Client.LoginAuthReqHandler.java

/**
 * @author Lilinfeng
 * @date 2014315
 * @version 1.0
 */
public class LoginAuthReqHandler extends ChannelHandlerAdapter {

From source file org.didinem.client.RpcClientHandler.java

/**
 * @author lilinfeng
 * @version 1.0
 * @date 2014214
 */
public class RpcClientHandler extends ChannelHandlerAdapter {

From source file org.eclipse.californium.elements.tcp.CloseOnErrorHandler.java

/**
 * Channel handler that closes connection if an exception was raised.
 * Use the logging level of {@link CloseOnErrorHandler} to specify the amount
 * of stack-traces in cases of security errors.
 * Level FINER, log all stack-traces, Level WARNING, log stack-trace of the
 * root most cause, and SEVERE for message of root most cause only.

From source file org.enderstone.server.packet.codec.DiscardingReader.java

/**
 *
 * @author Fernando
 */
public class DiscardingReader extends ChannelHandlerAdapter {

From source file org.enderstone.server.packet.NetworkManager.java

public class NetworkManager extends ChannelHandlerAdapter {

    public ChannelHandlerContext ctx;
    /**
     * MAIN THREAD USE ONLY
     */

From source file org.evilco.network.rcon.server.protocol.ServerChannelHandler.java

/**
 * @author Johannes Donath <johannesd@evil-co.com>
 * @copyright Copyright (C) 2014 Evil-Co <http://www.evil-co.com>
 */
@RequiredArgsConstructor
public class ServerChannelHandler extends ChannelHandlerAdapter {

From source file org.fengbaoxp.netty.inaction.ch2.EchoClientHandler.java

/**
 * @author Eugene Wang
 * @since 0.0.1
 */
public class EchoClientHandler extends ChannelHandlerAdapter {

From source file org.fengbaoxp.netty.inaction.ch2.EchoServerHandler.java

/**
 * @author Eugene Wang
 * @since 0.0.1
 */
@ChannelHandler.Sharable
public class EchoServerHandler extends ChannelHandlerAdapter {