Uses of Interface
org.jboss.netty.channel.socket.nio.WorkerPool
-
Packages that use WorkerPool Package Description org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of WorkerPool in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement WorkerPool Modifier and Type Class Description class
AbstractNioWorkerPool<E extends org.jboss.netty.channel.socket.nio.AbstractNioWorker>
Abstract base class forWorkerPool
implementations that create theWorker
's up-front and return them in a "fair" fashion when callingAbstractNioWorkerPool.nextWorker()
class
NioDatagramWorkerPool
Default implementation which hands ofNioDatagramWorker
'sclass
NioWorkerPool
Default implementation which hands ofNioWorker
'sclass
ShareableWorkerPool<E extends Worker>
This implementation of aWorkerPool
should be used if you plan to share aWorkerPool
between different Factories.
-