Package io.servicetalk.transport.api
Class ServiceTalkSocketOptions
- java.lang.Object
-
- io.servicetalk.transport.api.ServiceTalkSocketOptions
-
public final class ServiceTalkSocketOptions extends java.lang.ObjectSocketOptions that can be used besideStandardSocketOptions.
-
-
Field Summary
Fields Modifier and Type Field Description static java.net.SocketOption<java.lang.Integer>CONNECT_TIMEOUTThe connect timeout in milliseconds.static java.net.SocketOption<java.lang.Long>IDLE_TIMEOUTAllow to idle timeout in milli seconds after which the connection is closed.static java.net.SocketOption<java.lang.Integer>WRITE_BUFFER_THRESHOLDThe threshold after which the the Endpoint is not writable anymore.
-
-
-
Field Detail
-
CONNECT_TIMEOUT
public static final java.net.SocketOption<java.lang.Integer> CONNECT_TIMEOUT
The connect timeout in milliseconds.
-
WRITE_BUFFER_THRESHOLD
public static final java.net.SocketOption<java.lang.Integer> WRITE_BUFFER_THRESHOLD
The threshold after which the the Endpoint is not writable anymore.
-
IDLE_TIMEOUT
public static final java.net.SocketOption<java.lang.Long> IDLE_TIMEOUT
Allow to idle timeout in milli seconds after which the connection is closed.
-
-