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.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
io.netty.channel.sctp.nio |
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.sctp.oio |
Old blocking I/O based SCTP channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
Modifier and Type | Field and Description |
---|---|
private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<DefaultChannelConfig> |
DefaultChannelConfig.AUTOREAD_UPDATER |
Modifier and Type | Class and Description |
---|---|
class |
EpollChannelConfig |
class |
EpollDatagramChannelConfig |
class |
EpollDomainSocketChannelConfig |
class |
EpollServerChannelConfig |
class |
EpollServerSocketChannelConfig |
class |
EpollSocketChannelConfig |
Modifier and Type | Class and Description |
---|---|
class |
DefaultSctpChannelConfig
The default
SctpChannelConfig implementation for SCTP. |
class |
DefaultSctpServerChannelConfig
The default
SctpServerChannelConfig implementation for SCTP. |
Modifier and Type | Class and Description |
---|---|
private class |
NioSctpChannel.NioSctpChannelConfig |
private class |
NioSctpServerChannel.NioSctpServerChannelConfig |
Modifier and Type | Class and Description |
---|---|
private class |
OioSctpChannel.OioSctpChannelConfig |
private class |
OioSctpServerChannel.OioSctpServerChannelConfig |
Modifier and Type | Class and Description |
---|---|
class |
DefaultDatagramChannelConfig
The default
DatagramChannelConfig implementation. |
class |
DefaultServerSocketChannelConfig
The default
ServerSocketChannelConfig implementation. |
class |
DefaultSocketChannelConfig
The default
SocketChannelConfig implementation. |
Modifier and Type | Class and Description |
---|---|
(package private) class |
NioDatagramChannelConfig
The default
NioDatagramChannelConfig implementation. |
private class |
NioServerSocketChannel.NioServerSocketChannelConfig |
private class |
NioSocketChannel.NioSocketChannelConfig |
Modifier and Type | Class and Description |
---|---|
class |
DefaultOioServerSocketChannelConfig
Default
OioServerSocketChannelConfig implementation |
class |
DefaultOioSocketChannelConfig
Default
OioSocketChannelConfig implementation |