ManualIoEventLoop(IoEventLoopGroup parent,
Thread owningThread,
IoHandlerFactory factory) |
Create a new IoEventLoop that is owned by the user and so needs to be driven by the user with the given
Thread.
|
ManualIoEventLoop(IoEventLoopGroup parent,
Thread owningThread,
IoHandlerFactory factory,
io.netty.util.concurrent.Ticker ticker) |
Create a new IoEventLoop that is owned by the user and so needs to be driven by the user with the given
Thread.
|
ManualIoEventLoop(Thread owningThread,
IoHandlerFactory factory) |
Create a new IoEventLoop that is owned by the user and so needs to be driven by the user with the given
Thread.
|
MultiThreadIoEventLoopGroup(int nThreads,
IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(int nThreads,
Executor executor,
IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(int nThreads,
Executor executor,
IoHandlerFactory ioHandlerFactory,
io.netty.util.concurrent.EventExecutorChooserFactory chooserFactory,
Object... args) |
|
MultiThreadIoEventLoopGroup(int nThreads,
Executor executor,
IoHandlerFactory ioHandlerFactory,
Object... args) |
|
MultiThreadIoEventLoopGroup(int nThreads,
Executor executor,
io.netty.util.concurrent.EventExecutorChooserFactory chooserFactory,
IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(int nThreads,
ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(int nThreads,
ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory,
io.netty.util.concurrent.EventExecutorChooserFactory chooserFactory,
Object... args) |
|
MultiThreadIoEventLoopGroup(int nThreads,
ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory,
Object... args) |
|
MultiThreadIoEventLoopGroup(IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(Executor executor,
IoHandlerFactory ioHandlerFactory) |
|
MultiThreadIoEventLoopGroup(ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory) |
Create a new instance using the default number of thread.
|
SingleThreadIoEventLoop(IoEventLoopGroup parent,
Executor executor,
IoHandlerFactory ioHandlerFactory) |
Creates a new instance
|
SingleThreadIoEventLoop(IoEventLoopGroup parent,
Executor executor,
IoHandlerFactory ioHandlerFactory,
int maxPendingTasks,
io.netty.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler,
long maxTaskProcessingQuantumMs) |
Creates a new instance
|
SingleThreadIoEventLoop(IoEventLoopGroup parent,
Executor executor,
IoHandlerFactory ioHandlerFactory,
Queue<Runnable> taskQueue,
Queue<Runnable> tailTaskQueue,
io.netty.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler) |
Creates a new instance
|
SingleThreadIoEventLoop(IoEventLoopGroup parent,
ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory) |
Creates a new instance
|
SingleThreadIoEventLoop(IoEventLoopGroup parent,
ThreadFactory threadFactory,
IoHandlerFactory ioHandlerFactory,
int maxPendingTasks,
io.netty.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler,
long maxTaskProcessingQuantumMs) |
Creates a new instance
|