public interface CoreConnectionPNames
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CONNECTION_TIMEOUT
Determines the timeout in milliseconds until a connection is established.
|
static java.lang.String |
MAX_HEADER_COUNT
Determines the maximum HTTP header count allowed.
|
static java.lang.String |
MAX_LINE_LENGTH
Determines the maximum line length limit.
|
static java.lang.String |
SO_LINGER
Sets SO_LINGER with the specified linger time in seconds.
|
static java.lang.String |
SO_TIMEOUT
Defines the socket timeout (
SO_TIMEOUT ) in milliseconds,
which is the timeout for waiting for data. |
static java.lang.String |
SOCKET_BUFFER_SIZE
Determines the size of the internal socket buffer used to buffer data
while receiving / transmitting HTTP messages.
|
static java.lang.String |
STALE_CONNECTION_CHECK
Determines whether stale connection check is to be used.
|
static java.lang.String |
TCP_NODELAY
Determines whether Nagle's algorithm is to be used.
|
static final java.lang.String SO_TIMEOUT
SO_TIMEOUT
) in milliseconds,
which is the timeout for waiting for data. A timeout value of zero is
interpreted as an infinite timeout.
This parameter expects a value of type Integer
.
SocketOptions.SO_TIMEOUT
,
Constant Field Valuesstatic final java.lang.String TCP_NODELAY
This parameter expects a value of type Boolean
.
SocketOptions.TCP_NODELAY
,
Constant Field Valuesstatic final java.lang.String SOCKET_BUFFER_SIZE
This parameter expects a value of type Integer
.
static final java.lang.String SO_LINGER
0
implies that
the option is disabled. Value -1
implies that the JRE
default is used. The setting only affects socket close.
This parameter expects a value of type Integer
.
SocketOptions.SO_LINGER
,
Constant Field Valuesstatic final java.lang.String CONNECTION_TIMEOUT
This parameter expects a value of type Integer
.
static final java.lang.String STALE_CONNECTION_CHECK
This parameter expects a value of type Boolean
.
static final java.lang.String MAX_LINE_LENGTH
This parameter expects a value of type Integer
.
static final java.lang.String MAX_HEADER_COUNT
This parameter expects a value of type Integer
.