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

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

Introduction

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

Usage

From source file org.hornetq.core.remoting.impl.netty.ConnectionCreator.java

public interface ConnectionCreator extends ChannelHandler {
    NettyServerConnection createConnection(final ChannelHandlerContext ctx, String protocol, boolean httpEnabled)
            throws Exception;
}

From source file org.kordamp.javatrove.chat04.ChatChannelInitializer.java

/**
 * @author Andres Almiray
 */
public interface ChatChannelInitializer extends ChannelHandler {
}

From source file org.kordamp.javatrove.chat04.ChatHandler.java

/**
 * @author Andres Almiray
 */
public interface ChatHandler extends ChannelHandler {
}

From source file org.kordamp.javatrove.chat04.CommandDecoder.java

/**
 * @author Andres Almiray
 */
public interface CommandDecoder extends ChannelHandler {
}

From source file org.kordamp.javatrove.chat04.CommandEncoder.java

/**
 * @author Andres Almiray
 */
public interface CommandEncoder extends ChannelHandler {
}

From source file org.maodian.flyingcat.xmpp.XmppServerInitializer.java

/**
 * @author Cole Wen
 * 
 */
public class XmppServerInitializer extends ChannelInitializer<SocketChannel> implements ChannelHandler {
    //private static final LoggerEnabledStringDecoder DECODER = new LoggerEnabledStringDecoder();

From source file org.mitre.svmp.webrtc.protobuf.TranslatorProtobufClientHandler.java

public class TranslatorProtobufClientHandler extends SimpleChannelInboundHandler<SVMPProtocol.Request>
        implements ChannelHandler {

    private BlockingQueue<SVMPProtocol.Request> receiveQueue;

    public TranslatorProtobufClientHandler(BlockingQueue<Request> receiveQueue) {

From source file org.opendaylight.controller.netconf.impl.util.DeserializerExceptionHandler.java

public final class DeserializerExceptionHandler implements ChannelHandler {

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

    @Override
    public void handlerAdded(ChannelHandlerContext ctx) throws Exception {

From source file org.opendaylight.controller.netconf.nettyutil.handler.ssh.virtualsocket.VirtualSocket.java

/**
 * Handler class providing Socket functionality to OIO client application. By using VirtualSocket user can
 * use OIO application in asynchronous environment and NIO EventLoop. Using VirtualSocket OIO applications
 * are able to use full potential of NIO environment.
 */
public class VirtualSocket extends Socket implements ChannelHandler {

From source file org.opendaylight.controller.netconf.util.handler.ssh.virtualsocket.VirtualSocket.java

/**
 * Handler class providing Socket functionality to OIO client application. By using VirtualSocket user can
 * use OIO application in asynchronous environment and NIO EventLoop. Using VirtualSocket OIO applications
 * are able to use full potential of NIO environment.
 */
public class VirtualSocket extends Socket implements ChannelHandler {