Uses of Interface
io.netty.channel.socket.SocketChannelConfig
-
Packages that use SocketChannelConfig 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.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.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of SocketChannelConfig in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement SocketChannelConfig Modifier and Type Class Description class
EpollSocketChannelConfig
-
Uses of SocketChannelConfig in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement SocketChannelConfig Modifier and Type Class Description class
KQueueSocketChannelConfig
-
Uses of SocketChannelConfig in io.netty.channel.socket
Classes in io.netty.channel.socket that implement SocketChannelConfig Modifier and Type Class Description class
DefaultSocketChannelConfig
The defaultSocketChannelConfig
implementation.Methods in io.netty.channel.socket that return SocketChannelConfig Modifier and Type Method Description SocketChannelConfig
SocketChannel. config()
SocketChannelConfig
DefaultSocketChannelConfig. setAllocator(ByteBufAllocator allocator)
SocketChannelConfig
SocketChannelConfig. setAllocator(ByteBufAllocator allocator)
SocketChannelConfig
DefaultSocketChannelConfig. setAllowHalfClosure(boolean allowHalfClosure)
SocketChannelConfig
SocketChannelConfig. setAllowHalfClosure(boolean allowHalfClosure)
SocketChannelConfig
DefaultSocketChannelConfig. setAutoClose(boolean autoClose)
SocketChannelConfig
SocketChannelConfig. setAutoClose(boolean autoClose)
SocketChannelConfig
DefaultSocketChannelConfig. setAutoRead(boolean autoRead)
SocketChannelConfig
SocketChannelConfig. setAutoRead(boolean autoRead)
SocketChannelConfig
DefaultSocketChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SocketChannelConfig
SocketChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SocketChannelConfig
DefaultSocketChannelConfig. setKeepAlive(boolean keepAlive)
SocketChannelConfig
SocketChannelConfig. setKeepAlive(boolean keepAlive)
Sets theStandardSocketOptions.SO_KEEPALIVE
option.SocketChannelConfig
DefaultSocketChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SocketChannelConfig
SocketChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SocketChannelConfig
DefaultSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SocketChannelConfig
SocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SocketChannelConfig
DefaultSocketChannelConfig. setPerformancePreferences(int connectionTime, int latency, int bandwidth)
SocketChannelConfig
SocketChannelConfig. setPerformancePreferences(int connectionTime, int latency, int bandwidth)
Sets the performance preferences as specified inSocket.setPerformancePreferences(int, int, int)
.SocketChannelConfig
DefaultSocketChannelConfig. setReceiveBufferSize(int receiveBufferSize)
SocketChannelConfig
SocketChannelConfig. setReceiveBufferSize(int receiveBufferSize)
Sets theStandardSocketOptions.SO_RCVBUF
option.SocketChannelConfig
DefaultSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SocketChannelConfig
SocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SocketChannelConfig
DefaultSocketChannelConfig. setReuseAddress(boolean reuseAddress)
SocketChannelConfig
SocketChannelConfig. setReuseAddress(boolean reuseAddress)
Sets theStandardSocketOptions.SO_REUSEADDR
option.SocketChannelConfig
DefaultSocketChannelConfig. setSendBufferSize(int sendBufferSize)
SocketChannelConfig
SocketChannelConfig. setSendBufferSize(int sendBufferSize)
Sets theStandardSocketOptions.SO_SNDBUF
option.SocketChannelConfig
DefaultSocketChannelConfig. setSoLinger(int soLinger)
SocketChannelConfig
SocketChannelConfig. setSoLinger(int soLinger)
Sets theStandardSocketOptions.SO_LINGER
option.SocketChannelConfig
DefaultSocketChannelConfig. setTcpNoDelay(boolean tcpNoDelay)
SocketChannelConfig
SocketChannelConfig. setTcpNoDelay(boolean tcpNoDelay)
Sets theStandardSocketOptions.TCP_NODELAY
option.SocketChannelConfig
DefaultSocketChannelConfig. setTrafficClass(int trafficClass)
SocketChannelConfig
SocketChannelConfig. setTrafficClass(int trafficClass)
Sets theStandardSocketOptions.IP_TOS
option.SocketChannelConfig
DefaultSocketChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
SocketChannelConfig
DefaultSocketChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
SocketChannelConfig
DefaultSocketChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SocketChannelConfig
SocketChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SocketChannelConfig
DefaultSocketChannelConfig. setWriteSpinCount(int writeSpinCount)
SocketChannelConfig
SocketChannelConfig. setWriteSpinCount(int writeSpinCount)
-
Uses of SocketChannelConfig in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio that return SocketChannelConfig Modifier and Type Method Description SocketChannelConfig
NioSocketChannel. config()
-
Uses of SocketChannelConfig in io.netty.channel.socket.oio
Subinterfaces of SocketChannelConfig 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 SocketChannelConfig Modifier and Type Class Description class
DefaultOioSocketChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of SocketChannelConfig in io.netty.channel.uring
Methods in io.netty.channel.uring that return SocketChannelConfig Modifier and Type Method Description SocketChannelConfig
IoUringSocketChannel. config()
-