Example usage for io.netty.channel ChannelInboundHandler interface-usage

List of usage examples for io.netty.channel ChannelInboundHandler interface-usage

Introduction

In this page you can find the example usage for io.netty.channel ChannelInboundHandler interface-usage.

Usage

From source file org.opendaylight.protocol.bgp.rib.spi.BGPSession.java

/**
 * BGP Session represents the finite state machine in BGP, including timers and its purpose is to create a BGP
 * connection between BGP speakers. Session is automatically started, when TCP connection is created, but can be stopped
 * manually via close method of the {@link java.io.Closeable} interface.
 *
 * If the session is up, it has to redirect messages to/from user. Handles also malformed messages and unknown requests.

From source file org.opendaylight.protocol.bgp.rib.spi.SessionNegotiator.java

public interface SessionNegotiator extends ChannelInboundHandler {
}

From source file org.opendaylight.protocol.bmp.api.BmpSession.java

/**
 * BMP Session represents the finite state machine in BMP, its purpose is to create a BMP connection between
 * Peer and monitoring application. Session is automatically started, when TCP connection is created, but can be stopped
 * manually via close method of the {@link java.io.Closeable} interface.
 * If the session is up, it has to redirect messages to/from user. Handles also malformed messages and unknown requests.
 */

From source file org.opendaylight.protocol.framework.SessionNegotiator.java

/**
 * Session negotiator concepts. A negotiator is responsible for message
 * handling while the exact session parameters are not known. Once the
 * session parameters are finalized, the negotiator replaces itself in
 * the channel pipeline with the session.
 *

From source file org.opendaylight.protocol.pcep.SessionNegotiator.java

public interface SessionNegotiator extends ChannelInboundHandler {
}

From source file org.rzo.netty.ahessian.io.OutputProducer.java

abstract public class OutputProducer extends ChannelOutboundHandlerAdapter
        implements StopableHandler, ChannelInboundHandler {

    class MessageEvent {
        Object _msg;
        ChannelPromise _future;

From source file org.traccar.WrapperInboundHandler.java

public class WrapperInboundHandler implements ChannelInboundHandler {

    private ChannelInboundHandler handler;

    public ChannelInboundHandler getWrappedHandler() {
        return handler;

From source file org.virtue.network.NetworkHandler.java

/**
 * @author Im Frizzy <skype:kfriz1998>
 * @since Aug 9, 2014
 */
public class NetworkHandler implements ChannelInboundHandler {