Package org.apache.tomcat.util.net
Class SocketProperties
java.lang.Object
org.apache.tomcat.util.net.SocketProperties
Properties that can be set in the <Connector> element
 in server.xml. All properties are prefixed with "socket."
 and are currently only working for the Nio connector
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected intThe application read buffer size in bytes.protected intThe application write buffer size in bytes Default value is 8192protected intNioChannel pool size for the endpoint, this value is how many channels -1 means unlimited cached, 0 means no cache, -2 means bufferPoolSize will be used Default value is -2protected intBuffer pool size in bytes to be cached -1 means unlimited, 0 means no cache Default value is based on the max memory reported by the JVM, if less than 1GB, then 0, else the value divided by 32.protected booleanEnable/disable direct buffers for the network buffers Default value is disabledprotected booleanEnable/disable direct buffers for the network buffers for SSL Default value is disabledprotected intEnable/disable poller event cache, this bounded cache stores PollerEvent objects to reduce GC for the poller Default is 0 -1 is unlimited 0 is disabled >0 the max number of objects to keep in cache.protected BooleanOOBINLINE option.protected IntegerPerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.protected IntegerPerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.protected IntegerPerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.protected intEnable/disable socket processor cache, this bounded cache stores SocketProcessor objects to reduce GC Default is 0 -1 is unlimited 0 is disabledprotected IntegerSocket receive buffer size in bytes (SO_RCVBUF).protected BooleanSO_KEEPALIVE option.protected BooleanSO_LINGER option, paired with thesoLingerTimevalue.protected IntegerSO_LINGER option, paired with thesoLingerOnvalue.protected BooleanSO_REUSEADDR option.protected IntegerSO_TIMEOUT option. default is 20000.protected BooleanTCP_NO_DELAY option.protected longThe minimum frequency of the timeout interval to avoid excess load from the poller during high trafficprotected IntegerSocket send buffer size in bytes (SO_SNDBUF).protected intTimeout in milliseconds for an unlock to take place.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintgetActualBufferPool(int bufferOverhead) Get the actual buffer pool size to use.intintintintbooleanintbooleanintbooleanintintintintintbooleanbooleanintbooleanintbooleanlongintintvoidsetAppReadBufSize(int appReadBufSize) voidsetAppWriteBufSize(int appWriteBufSize) voidsetBufferPool(int bufferPool) voidsetBufferPoolSize(int bufferPoolSize) voidsetDirectBuffer(boolean directBuffer) voidsetDirectBufferPool(int directBufferPool) voidsetDirectSslBuffer(boolean directSslBuffer) voidsetEventCache(int eventCache) voidsetOoBInline(boolean ooBInline) voidsetPerformanceBandwidth(int performanceBandwidth) voidsetPerformanceConnectionTime(int performanceConnectionTime) voidsetPerformanceLatency(int performanceLatency) voidsetProcessorCache(int processorCache) voidsetProperties(ServerSocket socket) voidsetProperties(Socket socket) voidvoidvoidsetRxBufSize(int rxBufSize) voidsetSoKeepAlive(boolean soKeepAlive) voidsetSoLingerOn(boolean soLingerOn) voidsetSoLingerTime(int soLingerTime) voidsetSoReuseAddress(boolean soReuseAddress) voidsetSoTimeout(int soTimeout) voidsetTcpNoDelay(boolean tcpNoDelay) voidsetTimeoutInterval(long timeoutInterval) voidsetTxBufSize(int txBufSize) voidsetUnlockTimeout(int unlockTimeout) 
- 
Field Details- 
processorCacheprotected int processorCacheEnable/disable socket processor cache, this bounded cache stores SocketProcessor objects to reduce GC Default is 0 -1 is unlimited 0 is disabled
- 
eventCacheprotected int eventCacheEnable/disable poller event cache, this bounded cache stores PollerEvent objects to reduce GC for the poller Default is 0 -1 is unlimited 0 is disabled >0 the max number of objects to keep in cache.
- 
directBufferprotected boolean directBufferEnable/disable direct buffers for the network buffers Default value is disabled
- 
directSslBufferprotected boolean directSslBufferEnable/disable direct buffers for the network buffers for SSL Default value is disabled
- 
rxBufSizeSocket receive buffer size in bytes (SO_RCVBUF). JVM default used if not set.
- 
txBufSizeSocket send buffer size in bytes (SO_SNDBUF). JVM default used if not set.
- 
appReadBufSizeprotected int appReadBufSizeThe application read buffer size in bytes. Default value is 8192
- 
appWriteBufSizeprotected int appWriteBufSizeThe application write buffer size in bytes Default value is 8192
- 
bufferPoolprotected int bufferPoolNioChannel pool size for the endpoint, this value is how many channels -1 means unlimited cached, 0 means no cache, -2 means bufferPoolSize will be used Default value is -2
- 
bufferPoolSizeprotected int bufferPoolSizeBuffer pool size in bytes to be cached -1 means unlimited, 0 means no cache Default value is based on the max memory reported by the JVM, if less than 1GB, then 0, else the value divided by 32. This value will then be used to compute bufferPool if its value is -2
- 
tcpNoDelayTCP_NO_DELAY option. JVM default used if not set.
- 
soKeepAliveSO_KEEPALIVE option. JVM default used if not set.
- 
ooBInlineOOBINLINE option. JVM default used if not set.
- 
soReuseAddressSO_REUSEADDR option. JVM default used if not set.
- 
soLingerOnSO_LINGER option, paired with thesoLingerTimevalue. JVM defaults used unless both attributes are set.
- 
soLingerTimeSO_LINGER option, paired with thesoLingerOnvalue. JVM defaults used unless both attributes are set.
- 
soTimeoutSO_TIMEOUT option. default is 20000.
- 
performanceConnectionTimePerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.
- 
performanceLatencyPerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.
- 
performanceBandwidthPerformance preferences according to http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int) All three performance attributes must be set or the JVM defaults will be used.
- 
timeoutIntervalprotected long timeoutIntervalThe minimum frequency of the timeout interval to avoid excess load from the poller during high traffic
- 
unlockTimeoutprotected int unlockTimeoutTimeout in milliseconds for an unlock to take place.
 
- 
- 
Constructor Details- 
SocketPropertiespublic SocketProperties()
 
- 
- 
Method Details- 
setProperties- Throws:
- SocketException
 
- 
setProperties- Throws:
- SocketException
 
- 
setProperties- Throws:
- IOException
 
- 
setProperties- Throws:
- IOException
 
- 
getDirectBufferpublic boolean getDirectBuffer()
- 
getDirectSslBufferpublic boolean getDirectSslBuffer()
- 
getOoBInlinepublic boolean getOoBInline()
- 
getPerformanceBandwidthpublic int getPerformanceBandwidth()
- 
getPerformanceConnectionTimepublic int getPerformanceConnectionTime()
- 
getPerformanceLatencypublic int getPerformanceLatency()
- 
getRxBufSizepublic int getRxBufSize()
- 
getSoKeepAlivepublic boolean getSoKeepAlive()
- 
getSoLingerOnpublic boolean getSoLingerOn()
- 
getSoLingerTimepublic int getSoLingerTime()
- 
getSoReuseAddresspublic boolean getSoReuseAddress()
- 
getSoTimeoutpublic int getSoTimeout()
- 
getTcpNoDelaypublic boolean getTcpNoDelay()
- 
getTxBufSizepublic int getTxBufSize()
- 
getBufferPoolpublic int getBufferPool()
- 
getBufferPoolSizepublic int getBufferPoolSize()
- 
getEventCachepublic int getEventCache()
- 
getAppReadBufSizepublic int getAppReadBufSize()
- 
getAppWriteBufSizepublic int getAppWriteBufSize()
- 
getProcessorCachepublic int getProcessorCache()
- 
getTimeoutIntervalpublic long getTimeoutInterval()
- 
getDirectBufferPoolpublic int getDirectBufferPool()
- 
setPerformanceConnectionTimepublic void setPerformanceConnectionTime(int performanceConnectionTime) 
- 
setTxBufSizepublic void setTxBufSize(int txBufSize) 
- 
setTcpNoDelaypublic void setTcpNoDelay(boolean tcpNoDelay) 
- 
setSoTimeoutpublic void setSoTimeout(int soTimeout) 
- 
setSoReuseAddresspublic void setSoReuseAddress(boolean soReuseAddress) 
- 
setSoLingerTimepublic void setSoLingerTime(int soLingerTime) 
- 
setSoKeepAlivepublic void setSoKeepAlive(boolean soKeepAlive) 
- 
setRxBufSizepublic void setRxBufSize(int rxBufSize) 
- 
setPerformanceLatencypublic void setPerformanceLatency(int performanceLatency) 
- 
setPerformanceBandwidthpublic void setPerformanceBandwidth(int performanceBandwidth) 
- 
setOoBInlinepublic void setOoBInline(boolean ooBInline) 
- 
setDirectBufferpublic void setDirectBuffer(boolean directBuffer) 
- 
setDirectSslBufferpublic void setDirectSslBuffer(boolean directSslBuffer) 
- 
setSoLingerOnpublic void setSoLingerOn(boolean soLingerOn) 
- 
setBufferPoolpublic void setBufferPool(int bufferPool) 
- 
setBufferPoolSizepublic void setBufferPoolSize(int bufferPoolSize) 
- 
setEventCachepublic void setEventCache(int eventCache) 
- 
setAppReadBufSizepublic void setAppReadBufSize(int appReadBufSize) 
- 
setAppWriteBufSizepublic void setAppWriteBufSize(int appWriteBufSize) 
- 
setProcessorCachepublic void setProcessorCache(int processorCache) 
- 
setTimeoutIntervalpublic void setTimeoutInterval(long timeoutInterval) 
- 
setDirectBufferPoolpublic void setDirectBufferPool(int directBufferPool) 
- 
getUnlockTimeoutpublic int getUnlockTimeout()
- 
setUnlockTimeoutpublic void setUnlockTimeout(int unlockTimeout) 
- 
getActualBufferPoolpublic int getActualBufferPool(int bufferOverhead) Get the actual buffer pool size to use.- Parameters:
- bufferOverhead- When TLS is enabled, additional network buffers are needed and will be added to the application buffer size
- Returns:
- the actual buffer pool size that will be used
 
 
-