Java io.netty.channel.socket SocketChannelConfig fields, constructors, methods, implement or subclass

Example usage for Java io.netty.channel.socket SocketChannelConfig fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.channel.socket SocketChannelConfig.

The text is from its open source code.

Implementation

io.netty.channel.socket.SocketChannelConfig has the following implementations.
Click this link to see all its implementation.

Method

SocketChannelConfigsetConnectTimeoutMillis(int connectTimeoutMillis)
SocketChannelConfigsetKeepAlive(boolean keepAlive)
Sets the StandardSocketOptions#SO_KEEPALIVE option.
SocketChannelConfigsetReceiveBufferSize(int receiveBufferSize)
Sets the StandardSocketOptions#SO_RCVBUF option.
SocketChannelConfigsetReuseAddress(boolean reuseAddress)
Sets the StandardSocketOptions#SO_REUSEADDR option.
SocketChannelConfigsetSendBufferSize(int sendBufferSize)
Sets the StandardSocketOptions#SO_SNDBUF option.
SocketChannelConfigsetSoLinger(int soLinger)
Sets the StandardSocketOptions#SO_LINGER option.
SocketChannelConfigsetTcpNoDelay(boolean tcpNoDelay)
Sets the StandardSocketOptions#TCP_NODELAY option.