Package org.apache.wicket.jmx
Interface StoreSettingsMBean
-
- All Known Implementing Classes:
StoreSettings
public interface StoreSettingsMBean
JMX MBean for Application's StoreSettings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAsynchronousQueueCapacity()StringgetFileStoreFolder()longgetMaxSizePerSession()booleanisAsynchronous()
-
-
-
Method Detail
-
getMaxSizePerSession
long getMaxSizePerSession()
- Returns:
- maximum page size. After this size is exceeded, the
DiskPageStorewill start saving the pages at the beginning of file.
-
getFileStoreFolder
String getFileStoreFolder()
- Returns:
- the location of the folder where
DiskPageStorewill store the files with page instances per session
-
getAsynchronousQueueCapacity
int getAsynchronousQueueCapacity()
- Returns:
- the capacity of the queue used to store the pages which will be stored asynchronously
-
isAsynchronous
boolean isAsynchronous()
- Returns:
truewhen the HTTP worker thread doesn't wait for the storing of the page's bytes inIPageStore
-
-