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 de.unipassau.isl.evs.ssh.core.network.ClientHandshakeHandler.java

/**
 * A ChannelHandlerAdapter that will execute the Handshake with the Master and add the IncomingDispatcher on success.
 * See {@link HandshakePacket} for the handshake sequence, also {@link #setState(State, State)}
 * transitions show the order the functions must be executed.
 *
 * @author Niko Fink: Handshake Sequence

From source file de.unipassau.isl.evs.ssh.core.network.handler.PipelinePlug.java

/**
 * This ChannelHandler can be added to the end of every pipeline and will log unhandled read messages, exceptions
 * and user events to logcat.
 *
 * @author Niko Fink
 */

From source file de.unipassau.isl.evs.ssh.core.network.handler.SignatureChecker.java

/**
 * The SignatureChecker class is a channel handler that is part of a ChannelPipeline and checks signatures of received messages.
 *
 * @author Niko Fink
 */
public class SignatureChecker extends ChannelHandlerAdapter {

From source file de.unipassau.isl.evs.ssh.core.network.handler.TimeoutHandler.java

/**
 * TimeoutHandler class is part of the netty pipeline. Handles timeouts by sending {@link PingMessage}.
 *
 * @author Phil Werli
 */
public class TimeoutHandler extends ChannelHandlerAdapter {

From source file de.unipassau.isl.evs.ssh.master.network.ServerHandshakeHandler.java

/**
 * A ChannelHandlerAdapter that will execute the Handshake with the Client and add the IncomingDispatcher on success.
 * See {@link HandshakePacket} for the handshake sequence, also {@link #setState(ChannelHandlerContext, State, State)}
 * transitions show the order the functions must be executed.
 *
 * @author Niko Fink: Handshake Sequence

From source file dream.prehinite.netty.http.server.HttpHelloWorldServerHandler.java

@Component
public class HttpHelloWorldServerHandler extends ChannelHandlerAdapter {

    private static final byte[] CONTENT = { 'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd' };

    @Override

From source file esens.wp6.ibmJmsBackend.log4http.HttpLogServerHandler.java

public class HttpLogServerHandler extends ChannelHandlerAdapter {
    private static final Logger LOGGER = Logger.getLogger(HttpLogServerHandler.class);

    @Override
    public void channelReadComplete(ChannelHandlerContext ctx) {
        ctx.flush();

From source file favoorr.netty.protocol.netty.client.HeartBeatReqHandler.java

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

From source file favoorr.netty.protocol.netty.client.LoginAuthReqHandler.java

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

From source file favoorr.netty.protocol.netty.server.HeartBeatRespHandler.java

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