Interface SocketChannelConfig

All Superinterfaces:
ChannelConfig
All Known Subinterfaces:
NioSocketChannelConfig
All Known Implementing Classes:
DefaultNioSocketChannelConfig, DefaultSocketChannelConfig, HttpTunnelingSocketChannelConfig

public interface SocketChannelConfig extends ChannelConfig
A ChannelConfig for a SocketChannel.

Available options

In addition to the options provided by ChannelConfig, SocketChannelConfig allows the following options in the option map:
NameAssociated setter method
"keepAlive"setKeepAlive(boolean)
"reuseAddress"setReuseAddress(boolean)
"soLinger"setSoLinger(int)
"tcpNoDelay"setTcpNoDelay(boolean)
"receiveBufferSize"setReceiveBufferSize(int)
"sendBufferSize"setSendBufferSize(int)
"trafficClass"setTrafficClass(int)