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.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.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.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).
|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
AbstractServerChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
AbstractServerChannel.metadata() |
ChannelMetadata |
Channel.metadata()
|
Modifier and Type | Method and Description |
---|---|
private void |
DefaultChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator,
ChannelMetadata metadata)
Set the
RecvByteBufAllocator which is used for the channel to allocate receive buffers. |
Modifier and Type | Field and Description |
---|---|
private ChannelMetadata |
EmbeddedChannel.metadata |
private static ChannelMetadata |
EmbeddedChannel.METADATA_DISCONNECT |
private static ChannelMetadata |
EmbeddedChannel.METADATA_NO_DISCONNECT |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
EmbeddedChannel.metadata() |
private static ChannelMetadata |
EmbeddedChannel.metadata(boolean hasDisconnect) |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
LocalChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
LocalChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
AbstractNioByteChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
AbstractNioByteChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
AbstractOioByteChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
AbstractOioByteChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
NioSctpChannel.METADATA |
private static ChannelMetadata |
NioSctpServerChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
NioSctpChannel.metadata() |
ChannelMetadata |
NioSctpServerChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
OioSctpServerChannel.METADATA |
private static ChannelMetadata |
OioSctpChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
OioSctpServerChannel.metadata() |
ChannelMetadata |
OioSctpChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
NioDatagramChannel.METADATA |
private static ChannelMetadata |
NioServerSocketChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
NioDatagramChannel.metadata() |
ChannelMetadata |
NioServerSocketChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
OioDatagramChannel.METADATA |
private static ChannelMetadata |
OioServerSocketChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
OioDatagramChannel.metadata() |
ChannelMetadata |
OioServerSocketChannel.metadata() |
Modifier and Type | Field and Description |
---|---|
private static ChannelMetadata |
AbstractHttp2StreamChannel.METADATA |
Modifier and Type | Method and Description |
---|---|
ChannelMetadata |
AbstractHttp2StreamChannel.metadata() |