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.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_UPDATERprivate static java.util.concurrent.atomic.AtomicReferenceFieldUpdater<DefaultChannelConfig,WriteBufferWaterMark>DefaultChannelConfig. WATERMARK_UPDATER -
Uses of DefaultChannelConfig in io.netty.channel.socket
Subclasses of DefaultChannelConfig in io.netty.channel.socket Modifier and Type Class Description classDefaultDatagramChannelConfigThe defaultDatagramChannelConfigimplementation.classDefaultServerSocketChannelConfigThe defaultServerSocketChannelConfigimplementation.classDefaultSocketChannelConfigThe defaultSocketChannelConfigimplementation. -
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) classNioDatagramChannelConfigThe defaultNioDatagramChannelConfigimplementation.private classNioServerSocketChannel.NioServerSocketChannelConfigprivate classNioSocketChannel.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) classDefaultOioDatagramChannelConfigclassDefaultOioServerSocketChannelConfigDeprecated.use NIO / EPOLL / KQUEUE transport.classDefaultOioSocketChannelConfigDeprecated.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 classAbstractHttp2StreamChannel.Http2StreamChannelConfigChannelConfigso that the high and low writebuffer watermarks can reflect the outbound flow control window, without having to create a newWriteBufferWaterMarkobject whenever the flow control window changes.
-