org.apache.wicket.jmx
Interface StoreSettingsMBean

All Known Implementing Classes:
StoreSettings

public interface StoreSettingsMBean

JMX MBean for Application's StoreSettings


Method Summary
 int getAsynchronousQueueCapacity()
           
 int getFileChannelPoolCapacity()
           
 String getFileStoreFolder()
           
 int getInmemoryCacheSize()
           
 long getMaxSizePerSession()
           
 

Method Detail

getFileChannelPoolCapacity

int getFileChannelPoolCapacity()
Returns:
the maximum number of opened file channels by DiskDataStore.

getInmemoryCacheSize

int getInmemoryCacheSize()
Returns:
the number of page instances which will be stored in the http session for faster retrieval

getMaxSizePerSession

long getMaxSizePerSession()
Returns:
maximum page size. After this size is exceeded, the DiskDataStore will start saving the pages at the beginning of file.

getFileStoreFolder

String getFileStoreFolder()
Returns:
the location of the folder where DiskDataStore will 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


Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.