Steve B.
Steve B.

Reputation: 57304

Netty Best Practices

Is anyone aware of any documentation on the meaning and/or effect of the various setting of Nettys ChannelOptions?

Upvotes: 0

Views: 958

Answers (2)

Ben Evans
Ben Evans

Reputation: 518

These channel options map directly to properties on ChannelConfig and its subclasses like SocketChannelConfig or DatagramChannelConfig. The javadoc for those types goes into more detail on the various options. Many of these correspond to OS socket options as Alex said.

Upvotes: 1

Alex Taylor
Alex Taylor

Reputation: 8813

Those are socket options and descriptions can be found in your operating system's setsockopt documentation (SET SOCKet OPTions). Here is the documentation for Windows and FreeBSD.

Upvotes: 1

Related Questions