List of usage examples for io.netty.channel.socket.nio NioSocketChannel subclass-usage
From source file io.advantageous.conekt.http.impl.VertxNioSocketChannel.java
/**
* We provide this class so we can store a reference to the connection on it.
* <p>
* This means we don't have to do a lookup in the connectionMap for every message received which improves
* performance.
*
From source file io.vertx.core.http.impl.VertxNioSocketChannel.java
/**
* We provide this class so we can store a reference to the connection on it.
*
* This means we don't have to do a lookup in the connectionMap for every message received which improves
* performance.
*
From source file org.elasticsearch.transport.netty4.channel.PrivilegedNioSocketChannel.java
/** * Wraps netty calls to {@link java.nio.channels.SocketChannel#connect(SocketAddress)} in * {@link AccessController#doPrivileged(PrivilegedAction)} blocks. This is necessary to limit * {@link java.net.SocketPermission} to the transport module. */ public class PrivilegedNioSocketChannel extends NioSocketChannel {
From source file org.robotbrains.support.web.server.netty.ChannelWithId.java
/**
* A Netty channel that also has a unique ID for the request.
*
* <p>
* This class to go away once channel IDs are placed back in the Netty API.
*