Uses of Interface
io.netty.channel.socket.DuplexChannelConfig
-
Packages that use DuplexChannelConfig Package Description 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.socket Abstract TCP and UDP socket interfaces which extend the core channel API.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.quic QUIC implementation -
-
Uses of DuplexChannelConfig in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement DuplexChannelConfig Modifier and Type Class Description classEpollDomainSocketChannelConfigclassEpollSocketChannelConfig -
Uses of DuplexChannelConfig in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement DuplexChannelConfig Modifier and Type Class Description classKQueueDomainSocketChannelConfigclassKQueueSocketChannelConfig -
Uses of DuplexChannelConfig in io.netty.channel.socket
Subinterfaces of DuplexChannelConfig in io.netty.channel.socket Modifier and Type Interface Description interfaceSocketChannelConfigAChannelConfigfor aSocketChannel.Classes in io.netty.channel.socket that implement DuplexChannelConfig Modifier and Type Class Description classDefaultSocketChannelConfigThe defaultSocketChannelConfigimplementation.Methods in io.netty.channel.socket that return DuplexChannelConfig Modifier and Type Method Description DuplexChannelConfigDuplexChannelConfig. setAllocator(ByteBufAllocator allocator)DuplexChannelConfigDuplexChannelConfig. setAllowHalfClosure(boolean allowHalfClosure)Sets whether the channel should not close itself when its remote peer shuts down output to make the connection half-closed.DuplexChannelConfigDuplexChannelConfig. setAutoClose(boolean autoClose)DuplexChannelConfigDuplexChannelConfig. setAutoRead(boolean autoRead)DuplexChannelConfigDuplexChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)Deprecated.DuplexChannelConfigDuplexChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)DuplexChannelConfigDuplexChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)DuplexChannelConfigDuplexChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)DuplexChannelConfigDuplexChannelConfig. setWriteSpinCount(int writeSpinCount) -
Uses of DuplexChannelConfig in io.netty.channel.socket.oio
Subinterfaces of DuplexChannelConfig in io.netty.channel.socket.oio Modifier and Type Interface Description interfaceOioSocketChannelConfigDeprecated.use NIO / EPOLL / KQUEUE transport.Classes in io.netty.channel.socket.oio that implement DuplexChannelConfig Modifier and Type Class Description classDefaultOioSocketChannelConfigDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of DuplexChannelConfig in io.netty.handler.codec.quic
Subinterfaces of DuplexChannelConfig in io.netty.handler.codec.quic Modifier and Type Interface Description interfaceQuicStreamChannelConfigDuplexChannelConfigfor QUIC streams.
-