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 io.aos.netty5.proxy.HexDumpProxyBackendHandler.java

public class HexDumpProxyBackendHandler extends ChannelHandlerAdapter {

    private final Channel inboundChannel;

    public HexDumpProxyBackendHandler(Channel inboundChannel) {
        this.inboundChannel = inboundChannel;

From source file io.aos.netty5.proxy.HexDumpProxyFrontendHandler.java

public class HexDumpProxyFrontendHandler extends ChannelHandlerAdapter {

    private final String remoteHost;
    private final int remotePort;

    private volatile Channel outboundChannel;

From source file io.aos.netty5.sctp.SctpEchoClientHandler.java

/**
 * Handler implementation for the SCTP echo client.  It initiates the ping-pong
 * traffic between the echo client and server by sending the first message to
 * the server.
 */
public class SctpEchoClientHandler extends ChannelHandlerAdapter {

From source file io.aos.netty5.sctp.SctpEchoServerHandler.java

/**
 * Handler implementation for the SCTP echo server.
 */
@Sharable
public class SctpEchoServerHandler extends ChannelHandlerAdapter {

From source file io.aos.netty5.socksproxy.DirectClientHandler.java

public final class DirectClientHandler extends ChannelHandlerAdapter {

    private final Promise<Channel> promise;

    public DirectClientHandler(Promise<Channel> promise) {
        this.promise = promise;

From source file io.aos.netty5.socksproxy.RelayHandler.java

public final class RelayHandler extends ChannelHandlerAdapter {

    private final Channel relayChannel;

    public RelayHandler(Channel relayChannel) {
        this.relayChannel = relayChannel;

From source file io.aos.netty5.spdy.client.SpdyClientStreamIdHandler.java

/**
 * Adds a unique client stream ID to the SPDY header. Client stream IDs MUST be odd.
 */
public class SpdyClientStreamIdHandler extends ChannelHandlerAdapter {

    private int currentStreamId = 1;

From source file io.aos.netty5.spdy.client.SpdyFrameLogger.java

/**
 * Logs SPDY frames for debugging purposes.
 */
public class SpdyFrameLogger extends ChannelHandlerAdapter {

    private enum Direction {

From source file io.aos.netty5.udt.echo.bytes.ByteEchoServerHandler.java

/**
 * Handler implementation for the echo server.
 */
@Sharable
public class ByteEchoServerHandler extends ChannelHandlerAdapter {

From source file io.aos.netty5.udt.echo.message.MsgEchoServerHandler.java

/**
 * Handler implementation for the echo server.
 */
@Sharable
public class MsgEchoServerHandler extends ChannelHandlerAdapter {