Uses of Class
io.netty.channel.DefaultChannelConfig
-
Packages that use DefaultChannelConfig 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.kqueue BSD specific transport.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).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of DefaultChannelConfig in io.netty.channel
Fields in io.netty.channel with type parameters of type DefaultChannelConfig Modifier and Type Field Description private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<DefaultChannelConfig>
DefaultChannelConfig. AUTOREAD_UPDATER
private static java.util.concurrent.atomic.AtomicReferenceFieldUpdater<DefaultChannelConfig,WriteBufferWaterMark>
DefaultChannelConfig. WATERMARK_UPDATER
-
Uses of DefaultChannelConfig in io.netty.channel.epoll
Subclasses of DefaultChannelConfig in io.netty.channel.epoll Modifier and Type Class Description class
EpollChannelConfig
class
EpollDatagramChannelConfig
class
EpollDomainDatagramChannelConfig
class
EpollDomainSocketChannelConfig
class
EpollServerChannelConfig
class
EpollServerSocketChannelConfig
class
EpollSocketChannelConfig
-
Uses of DefaultChannelConfig in io.netty.channel.kqueue
Subclasses of DefaultChannelConfig in io.netty.channel.kqueue Modifier and Type Class Description class
KQueueChannelConfig
class
KQueueDatagramChannelConfig
class
KQueueDomainDatagramChannelConfig
class
KQueueDomainSocketChannelConfig
class
KQueueServerChannelConfig
class
KQueueServerSocketChannelConfig
class
KQueueSocketChannelConfig
-
Uses of DefaultChannelConfig in io.netty.channel.sctp
Subclasses of DefaultChannelConfig in io.netty.channel.sctp Modifier and Type Class Description class
DefaultSctpChannelConfig
The defaultSctpChannelConfig
implementation for SCTP.class
DefaultSctpServerChannelConfig
The defaultSctpServerChannelConfig
implementation for SCTP. -
Uses of DefaultChannelConfig in io.netty.channel.sctp.nio
Subclasses of DefaultChannelConfig in io.netty.channel.sctp.nio Modifier and Type Class Description private class
NioSctpChannel.NioSctpChannelConfig
private class
NioSctpServerChannel.NioSctpServerChannelConfig
-
Uses of DefaultChannelConfig in io.netty.channel.sctp.oio
Subclasses of DefaultChannelConfig in io.netty.channel.sctp.oio Modifier and Type Class Description private class
OioSctpChannel.OioSctpChannelConfig
Deprecated.private class
OioSctpServerChannel.OioSctpServerChannelConfig
Deprecated. -
Uses of DefaultChannelConfig in io.netty.channel.socket
Subclasses of DefaultChannelConfig in io.netty.channel.socket Modifier and Type Class Description class
DefaultDatagramChannelConfig
The defaultDatagramChannelConfig
implementation.class
DefaultServerSocketChannelConfig
The defaultServerSocketChannelConfig
implementation.class
DefaultSocketChannelConfig
The defaultSocketChannelConfig
implementation. -
Uses of DefaultChannelConfig in io.netty.channel.socket.nio
Subclasses of DefaultChannelConfig in io.netty.channel.socket.nio Modifier and Type Class Description (package private) class
NioDatagramChannelConfig
The defaultNioDatagramChannelConfig
implementation.private class
NioDomainSocketChannel.NioDomainSocketChannelConfig
private class
NioServerDomainSocketChannel.NioDomainServerSocketChannelConfig
private class
NioServerSocketChannel.NioServerSocketChannelConfig
private class
NioSocketChannel.NioSocketChannelConfig
-
Uses of DefaultChannelConfig in io.netty.channel.socket.oio
Subclasses of DefaultChannelConfig in io.netty.channel.socket.oio Modifier and Type Class Description (package private) class
DefaultOioDatagramChannelConfig
class
DefaultOioServerSocketChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport.class
DefaultOioSocketChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of DefaultChannelConfig in io.netty.handler.codec.http2
Subclasses of DefaultChannelConfig in io.netty.handler.codec.http2 Modifier and Type Class Description private static class
AbstractHttp2StreamChannel.Http2StreamChannelConfig
ChannelConfig
so that the high and low writebuffer watermarks can reflect the outbound flow control window, without having to create a newWriteBufferWaterMark
object whenever the flow control window changes.
-