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.embedded |
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context. |
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
io.netty.channel.local |
A virtual transport that enables the communication between the two
parties in the same virtual machine.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.oio |
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
Modifier and Type | Class and Description |
---|---|
private class |
AbstractServerChannel.DefaultServerUnsafe |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
AbstractServerChannel.newUnsafe() |
protected abstract AbstractChannel.AbstractUnsafe |
AbstractChannel.newUnsafe()
Create a new
AbstractChannel.AbstractUnsafe instance which will be used for the life-time of the Channel |
Modifier and Type | Class and Description |
---|---|
private class |
EmbeddedChannel.DefaultUnsafe |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
EmbeddedChannel.newUnsafe() |
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractEpollChannel.AbstractEpollUnsafe |
(package private) class |
AbstractEpollServerChannel.EpollServerSocketUnsafe |
(package private) class |
AbstractEpollStreamChannel.EpollStreamUnsafe |
(package private) class |
EpollDatagramChannel.EpollDatagramChannelUnsafe |
private class |
EpollDomainSocketChannel.EpollDomainUnsafe |
private class |
EpollSocketChannel.EpollSocketChannelUnsafe |
Modifier and Type | Class and Description |
---|---|
private class |
LocalChannel.LocalUnsafe |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
LocalChannel.newUnsafe() |
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractNioByteChannel.NioByteUnsafe |
protected class |
AbstractNioChannel.AbstractNioUnsafe |
private class |
AbstractNioMessageChannel.NioMessageUnsafe |
Modifier and Type | Class and Description |
---|---|
private class |
AbstractOioChannel.DefaultOioUnsafe |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
AbstractOioChannel.newUnsafe() |
Modifier and Type | Class and Description |
---|---|
private class |
NioSocketChannel.NioSocketChannelUnsafe |