Uses of Class
org.jboss.netty.channel.socket.nio.NioWorker
-
Packages that use NioWorker Package Description org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of NioWorker in org.jboss.netty.channel.socket.nio
Methods in org.jboss.netty.channel.socket.nio that return NioWorker Modifier and Type Method Description NioWorker
NioSocketChannel. getWorker()
protected NioWorker
NioWorkerPool. newWorker(Executor executor)
Constructors in org.jboss.netty.channel.socket.nio with parameters of type NioWorker Constructor Description NioSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, SocketChannel socket, NioWorker worker)
Constructor parameters in org.jboss.netty.channel.socket.nio with type arguments of type NioWorker Constructor Description NioClientSocketChannelFactory(Executor bossExecutor, int bossCount, WorkerPool<NioWorker> workerPool)
Creates a new instance.NioClientSocketChannelFactory(Executor bossExecutor, int bossCount, WorkerPool<NioWorker> workerPool, Timer timer)
Creates a new instance.NioClientSocketChannelFactory(BossPool<NioClientBoss> bossPool, WorkerPool<NioWorker> workerPool)
Creates a new instance.NioServerSocketChannelFactory(Executor bossExecutor, int bossCount, WorkerPool<NioWorker> workerPool)
Create a new instance.NioServerSocketChannelFactory(Executor bossExecutor, WorkerPool<NioWorker> workerPool)
Creates a new instance.NioServerSocketChannelFactory(BossPool<NioServerBoss> bossPool, WorkerPool<NioWorker> workerPool)
Create a new instance.
-