Uses of Class
io.netty.channel.ChannelMetadata
-
Packages that use ChannelMetadata Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.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 virtualChannel
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.kqueue BSD specific transport.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).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. -
-
Uses of ChannelMetadata in io.netty.bootstrap
Fields in io.netty.bootstrap declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
FailedChannel. METADATA
Methods in io.netty.bootstrap that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
FailedChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel
Fields in io.netty.channel declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractServerChannel. METADATA
Methods in io.netty.channel that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractServerChannel. metadata()
ChannelMetadata
Channel. metadata()
Methods in io.netty.channel with parameters of type ChannelMetadata Modifier and Type Method Description private void
DefaultChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator, ChannelMetadata metadata)
Set theRecvByteBufAllocator
which is used for the channel to allocate receive buffers. -
Uses of ChannelMetadata in io.netty.channel.embedded
Fields in io.netty.channel.embedded declared as ChannelMetadata Modifier and Type Field Description private ChannelMetadata
EmbeddedChannel. metadata
private static ChannelMetadata
EmbeddedChannel. METADATA_DISCONNECT
private static ChannelMetadata
EmbeddedChannel. METADATA_NO_DISCONNECT
Methods in io.netty.channel.embedded that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
EmbeddedChannel. metadata()
private static ChannelMetadata
EmbeddedChannel. metadata(boolean hasDisconnect)
-
Uses of ChannelMetadata in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractEpollChannel. METADATA
private static ChannelMetadata
AbstractEpollServerChannel. METADATA
private static ChannelMetadata
AbstractEpollStreamChannel. METADATA
private static ChannelMetadata
EpollDatagramChannel. METADATA
private static ChannelMetadata
EpollDomainDatagramChannel. METADATA
Methods in io.netty.channel.epoll that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractEpollChannel. metadata()
ChannelMetadata
AbstractEpollServerChannel. metadata()
ChannelMetadata
AbstractEpollStreamChannel. metadata()
ChannelMetadata
EpollDatagramChannel. metadata()
ChannelMetadata
EpollDomainDatagramChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractKQueueChannel. METADATA
private static ChannelMetadata
AbstractKQueueDatagramChannel. METADATA
private static ChannelMetadata
AbstractKQueueServerChannel. METADATA
private static ChannelMetadata
AbstractKQueueStreamChannel. METADATA
Methods in io.netty.channel.kqueue that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractKQueueChannel. metadata()
ChannelMetadata
AbstractKQueueDatagramChannel. metadata()
ChannelMetadata
AbstractKQueueServerChannel. metadata()
ChannelMetadata
AbstractKQueueStreamChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel.local
Fields in io.netty.channel.local declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
LocalChannel. METADATA
Methods in io.netty.channel.local that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
LocalChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel.nio
Fields in io.netty.channel.nio declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractNioByteChannel. METADATA
Methods in io.netty.channel.nio that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractNioByteChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel.oio
Fields in io.netty.channel.oio declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractOioByteChannel. METADATA
Deprecated.Methods in io.netty.channel.oio that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractOioByteChannel. metadata()
Deprecated. -
Uses of ChannelMetadata in io.netty.channel.socket.nio
Fields in io.netty.channel.socket.nio declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
NioDatagramChannel. METADATA
private static ChannelMetadata
NioServerSocketChannel. METADATA
Methods in io.netty.channel.socket.nio that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
NioDatagramChannel. metadata()
ChannelMetadata
NioServerSocketChannel. metadata()
-
Uses of ChannelMetadata in io.netty.channel.socket.oio
Fields in io.netty.channel.socket.oio declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
OioDatagramChannel. METADATA
Deprecated.private static ChannelMetadata
OioServerSocketChannel. METADATA
Deprecated.Methods in io.netty.channel.socket.oio that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
OioDatagramChannel. metadata()
Deprecated.ChannelMetadata
OioServerSocketChannel. metadata()
Deprecated. -
Uses of ChannelMetadata in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as ChannelMetadata Modifier and Type Field Description private static ChannelMetadata
AbstractHttp2StreamChannel. METADATA
Methods in io.netty.handler.codec.http2 that return ChannelMetadata Modifier and Type Method Description ChannelMetadata
AbstractHttp2StreamChannel. metadata()
-