Package | Description |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
DefaultSelectStrategy
Default select strategy.
|
Modifier and Type | Field and Description |
---|---|
(package private) static SelectStrategy |
DefaultSelectStrategy.INSTANCE |
Modifier and Type | Method and Description |
---|---|
SelectStrategy |
DefaultSelectStrategyFactory.newSelectStrategy() |
SelectStrategy |
SelectStrategyFactory.newSelectStrategy()
Creates a new
SelectStrategy . |
Modifier and Type | Field and Description |
---|---|
private SelectStrategy |
EpollEventLoop.selectStrategy |
Constructor and Description |
---|
EpollEventLoop(EventLoopGroup parent,
java.util.concurrent.ThreadFactory threadFactory,
int maxEvents,
SelectStrategy strategy,
RejectedExecutionHandler rejectedExecutionHandler) |
Modifier and Type | Field and Description |
---|---|
private SelectStrategy |
NioEventLoop.selectStrategy |
Constructor and Description |
---|
NioEventLoop(NioEventLoopGroup parent,
java.util.concurrent.ThreadFactory threadFactory,
java.nio.channels.spi.SelectorProvider selectorProvider,
SelectStrategy strategy,
RejectedExecutionHandler rejectedExecutionHandler) |