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

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

Introduction

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

Usage

From source file com.springapp.mvc.netty.example.sctp.SctpEchoServerHandler.java

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

From source file com.springapp.mvc.netty.example.socksproxy.DirectClientHandler.java

public final class DirectClientHandler extends ChannelInboundHandlerAdapter {

    private final Promise<Channel> promise;

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

From source file com.springapp.mvc.netty.example.socksproxy.RelayHandler.java

public final class RelayHandler extends ChannelInboundHandlerAdapter {

    private final Channel relayChannel;

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

From source file com.springapp.mvc.netty.example.udt.echo.bytes.ByteEchoServerHandler.java

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

From source file com.springapp.mvc.netty.example.udt.echo.message.MsgEchoServerHandler.java

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

From source file com.srotya.sidewinder.core.ingress.binary.SeriesDataPointWriter.java

/**
 * @author ambud
 */
public class SeriesDataPointWriter extends ChannelInboundHandlerAdapter {

    private StorageEngine engine;

From source file com.streamsets.pipeline.stage.origin.tcp.TCPObjectToRecordHandler.java

public class TCPObjectToRecordHandler extends ChannelInboundHandlerAdapter {

    private static final Logger LOG = LoggerFactory.getLogger(TCPObjectToRecordHandler.class);

    // can't figure out any cleaner way to detect peer reset via Netty
    public static final String RST_PACKET_MESSAGE = "Connection reset by peer";

From source file com.study.hc.net.netty.EchoServerHandler.java

/**
 * Handler implementation for the echo server.
 */
@Sharable
public class EchoServerHandler extends ChannelInboundHandlerAdapter {

From source file com.superman.netty.echo.EchoClientHandler.java

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

From source file com.superman.netty.echo.EchoServerHandler.java

/**
 * Handler implementation for the echo server.
 */
@Sharable
public class EchoServerHandler extends ChannelInboundHandlerAdapter {