Uses of Interface
io.netty.channel.socket.DuplexChannelConfig
-
Packages that use DuplexChannelConfig Package Description 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). -
-
Uses of DuplexChannelConfig in io.netty.channel.socket
Subinterfaces of DuplexChannelConfig in io.netty.channel.socket Modifier and Type Interface Description interface
SocketChannelConfig
AChannelConfig
for aSocketChannel
.Classes in io.netty.channel.socket that implement DuplexChannelConfig Modifier and Type Class Description class
DefaultSocketChannelConfig
The defaultSocketChannelConfig
implementation.Methods in io.netty.channel.socket that return DuplexChannelConfig Modifier and Type Method Description DuplexChannelConfig
DuplexChannelConfig. setAllocator(ByteBufAllocator allocator)
DuplexChannelConfig
DuplexChannelConfig. setAllowHalfClosure(boolean allowHalfClosure)
Sets whether the channel should not close itself when its remote peer shuts down output to make the connection half-closed.DuplexChannelConfig
DuplexChannelConfig. setAutoClose(boolean autoClose)
DuplexChannelConfig
DuplexChannelConfig. setAutoRead(boolean autoRead)
DuplexChannelConfig
DuplexChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.DuplexChannelConfig
DuplexChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
DuplexChannelConfig
DuplexChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
DuplexChannelConfig
DuplexChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
DuplexChannelConfig
DuplexChannelConfig. 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 interface
OioSocketChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport.Classes in io.netty.channel.socket.oio that implement DuplexChannelConfig Modifier and Type Class Description class
DefaultOioSocketChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport.
-