Example usage for io.netty.channel.socket.nio NioServerSocketChannel subclass-usage

List of usage examples for io.netty.channel.socket.nio NioServerSocketChannel subclass-usage

Introduction

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

Usage

From source file io.advantageous.conekt.http.impl.VertxNioServerSocketChannel.java

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
public class VertxNioServerSocketChannel extends NioServerSocketChannel {

    private static final Logger log = LoggerFactory.getLogger(VertxNioServerSocketChannel.class);

From source file io.vertx.core.http.impl.VertxNioServerSocketChannel.java

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
public class VertxNioServerSocketChannel extends NioServerSocketChannel {

    private static final Logger log = LoggerFactory.getLogger(VertxNioServerSocketChannel.class);

From source file org.elasticsearch.transport.netty4.channel.PrivilegedNioServerSocketChannel.java

/**
 * Wraps netty calls to {@link java.nio.channels.ServerSocketChannel#accept()} in
 * {@link AccessController#doPrivileged(PrivilegedAction)} blocks. This is necessary to limit
 * {@link java.net.SocketPermission} to the transport module.
 */
public class PrivilegedNioServerSocketChannel extends NioServerSocketChannel {

From source file org.robotbrains.support.web.server.netty.ServerChannelWithId.java

/**
 * A Netty server channel that supplies a channel has a unique ID for the request.
 * 
 * <p>
 * This class to go away once channel IDs are placed back in the Netty API.
 *