ChannelOption

cc.otavia.core.channel.ChannelOption
See theChannelOption companion class
object ChannelOption

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def exists(name: String): Boolean

Returns true if a ChannelOption exists for the given name.

Returns true if a ChannelOption exists for the given name.

Attributes

def valueOf[T](name: String): ChannelOption[T]

Returns the ChannelOption of the specified name.

Returns the ChannelOption of the specified name.

Attributes

def valueOf[T](firstNameComponent: Class[_], secondNameComponent: String): ChannelOption[T]

Shortcut of valueOf(String) valueOf(firstNameComponent.getName() + "#" + secondNameComponent).

Shortcut of valueOf(String) valueOf(firstNameComponent.getName() + "#" + secondNameComponent).

Attributes

Concrete fields

val AUTO_CLOSE: ChannelOption[Boolean]

If true then the Channel is closed automatically and immediately on write failure. The default value is true.

If true then the Channel is closed automatically and immediately on write failure. The default value is true.

Attributes

val AUTO_READ: ChannelOption[Boolean]
val CHANNEL_FUTURE_BARRIER: ChannelOption[AnyRef => Boolean]
val CHANNEL_STACK_BARRIER: ChannelOption[AnyRef => Boolean]
val IP_MULTICAST_IF: ChannelOption[NetworkInterface]
val IP_TOS: ChannelOption[Integer]
val SO_BACKLOG: ChannelOption[Integer]
val SO_BROADCAST: ChannelOption[Boolean]
val SO_KEEPALIVE: ChannelOption[Boolean]
val SO_LINGER: ChannelOption[Integer]
val SO_RCVBUF: ChannelOption[Integer]
val SO_REUSEADDR: ChannelOption[Boolean]
val SO_SNDBUF: ChannelOption[Integer]
val SO_TIMEOUT: ChannelOption[Integer]
val TCP_FASTOPEN: ChannelOption[Integer]

Server-side TCP FastOpen. Configures the maximum number of outstanding (waiting to be accepted) TFO connections.

Server-side TCP FastOpen. Configures the maximum number of outstanding (waiting to be accepted) TFO connections.

Attributes

Client-side TCP FastOpen. Sending data with the initial TCP handshake.

Client-side TCP FastOpen. Sending data with the initial TCP handshake.

Attributes

val TCP_NODELAY: ChannelOption[Boolean]