Package org.bedework.util.servlet.io
Interface PooledBuffersProperties
-
- All Known Subinterfaces:
PooledBuffersMBean
- All Known Implementing Classes:
PooledBuffers,PooledBuffersPropertiesImpl
public interface PooledBuffersPropertiesThese are the properties that the pooled buffer module needs to know about.Annotated to allow use by mbeans
- Author:
- douglm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLargeBufferPoolSize()intgetLargeBufferSize()intgetMediumBufferPoolSize()intgetMediumBufferSize()intgetSmallBufferPoolSize()intgetSmallBufferSize()voidsetLargeBufferPoolSize(int val)voidsetLargeBufferSize(int val)voidsetMediumBufferPoolSize(int val)voidsetMediumBufferSize(int val)voidsetSmallBufferPoolSize(int val)voidsetSmallBufferSize(int val)
-
-
-
Method Detail
-
setSmallBufferSize
void setSmallBufferSize(int val)
- Parameters:
val- the size of each byte buffer
-
getSmallBufferSize
int getSmallBufferSize()
- Returns:
- the size of each byte buffer
-
setMediumBufferSize
void setMediumBufferSize(int val)
- Parameters:
val- the size of each byte buffer
-
getMediumBufferSize
int getMediumBufferSize()
- Returns:
- the size of each byte buffer
-
setLargeBufferSize
void setLargeBufferSize(int val)
- Parameters:
val- the size of each byte buffer
-
getLargeBufferSize
int getLargeBufferSize()
- Returns:
- the size of each byte buffer
-
setSmallBufferPoolSize
void setSmallBufferPoolSize(int val)
- Parameters:
val- the max number of buffers
-
getSmallBufferPoolSize
int getSmallBufferPoolSize()
- Returns:
- the max number of buffers
-
setMediumBufferPoolSize
void setMediumBufferPoolSize(int val)
- Parameters:
val- the max number of buffers
-
getMediumBufferPoolSize
int getMediumBufferPoolSize()
- Returns:
- the max number of buffers
-
setLargeBufferPoolSize
void setLargeBufferPoolSize(int val)
- Parameters:
val- the max number of buffers
-
getLargeBufferPoolSize
int getLargeBufferPoolSize()
- Returns:
- the max number of buffers
-
-