Interface NioSelectorPool
-
- All Known Subinterfaces:
BossPool<E>
,WorkerPool<E>
- All Known Implementing Classes:
AbstractNioBossPool
,AbstractNioWorkerPool
,NioClientBossPool
,NioDatagramWorkerPool
,NioServerBossPool
,NioWorkerPool
,ShareableWorkerPool
public interface NioSelectorPool
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
rebuildSelectors()
Replaces the currentSelector
s of theBoss
es with newSelector
s to work around the infamous epoll 100% CPU bug.void
shutdown()
Shutdown theNioSelectorPool
and all internal created resources
-
-
-
Method Detail
-
rebuildSelectors
void rebuildSelectors()
Replaces the currentSelector
s of theBoss
es with newSelector
s to work around the infamous epoll 100% CPU bug.
-
shutdown
void shutdown()
Shutdown theNioSelectorPool
and all internal created resources
-
-