Uses of Interface
org.jboss.netty.channel.socket.nio.NioSelectorPool
-
Packages that use NioSelectorPool Package Description org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of NioSelectorPool in org.jboss.netty.channel.socket.nio
Subinterfaces of NioSelectorPool in org.jboss.netty.channel.socket.nio Modifier and Type Interface Description interface
BossPool<E extends Boss>
A Pool that holdsBoss
instancesinterface
WorkerPool<E extends Worker>
TheWorkerPool
is responsible to hand ofWorker
's on demandClasses in org.jboss.netty.channel.socket.nio that implement NioSelectorPool Modifier and Type Class Description class
AbstractNioBossPool<E extends Boss>
class
AbstractNioWorkerPool<E extends AbstractNioWorker>
Abstract base class forWorkerPool
implementations that create theWorker
's up-front and return them in a "fair" fashion when callingAbstractNioWorkerPool.nextWorker()
class
NioClientBossPool
HoldsNioClientBoss
instances to useclass
NioDatagramWorkerPool
Default implementation which hands ofNioDatagramWorker
'sclass
NioServerBossPool
HoldsNioServerBoss
instances to useclass
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.
-