Java io.netty.channel.epoll EpollEventLoopGroup fields, constructors, methods, implement or subclass

Example usage for Java io.netty.channel.epoll EpollEventLoopGroup fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.channel.epoll EpollEventLoopGroup.

The text is from its open source code.

Constructor

EpollEventLoopGroup(int nThreads, SelectStrategyFactory selectStrategyFactory)
Create a new instance using the specified number of threads and the default ThreadFactory .
EpollEventLoopGroup(int nThreads, ThreadFactory threadFactory)
Create a new instance using the specified number of threads and the given ThreadFactory .
EpollEventLoopGroup(int nThreads, Executor executor)
EpollEventLoopGroup()
Create a new instance using the default number of threads and the default ThreadFactory .
EpollEventLoopGroup(int nThreads)
Create a new instance using the specified number of threads and the default ThreadFactory .
EpollEventLoopGroup(ThreadFactory threadFactory)
Create a new instance using the default number of threads and the given ThreadFactory .
EpollEventLoopGroup(int nThreads, ThreadFactory threadFactory, SelectStrategyFactory selectStrategyFactory)
Create a new instance using the specified number of threads and the given ThreadFactory .
EpollEventLoopGroup(int nThreads, ThreadFactory threadFactory, int maxEventsAtOnce)
Create a new instance using the specified number of threads, the given ThreadFactory and the given maximal amount of epoll events to handle per epollWait(...).
EpollEventLoopGroup(int nThreads, Executor executor, SelectStrategyFactory selectStrategyFactory)

Method