Package io.netty.channel
Interface EventLoopTaskQueueFactory
-
public interface EventLoopTaskQueueFactoryFactory used to createQueueinstances that will be used to store tasks for anEventLoop. Generally speaking the returnedQueueMUST be thread-safe and depending on theEventLoopimplementation must be of typeBlockingQueue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue<Runnable>newTaskQueue(int maxCapacity)Returns a newQueueto use.
-