Package io.netty.channel
Interface EventLoopTaskQueueFactory
-
public interface EventLoopTaskQueueFactory
Factory used to createQueue
instances that will be used to store tasks for anEventLoop
. Generally speaking the returnedQueue
MUST be thread-safe and depending on theEventLoop
implementation must be of typeBlockingQueue
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue<Runnable>
newTaskQueue(int maxCapacity)
Returns a newQueue
to use.
-