net.sf.jso
Interface ManagerInfo

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
JSOStorageManager

public interface ManagerInfo
extends java.io.Serializable

Interface for storage management information.


Method Summary
 int getCacheLoad()
          Returns the number of cache slots in use.
 int getCacheSize()
          Returns cache's size.
 int getPoolCapacity()
          Returns the connection pool capacity.
 int getPoolLoad()
          Returns the number of pool's connections in use.
 int getThreadCount()
          Returns the number of active threads.
 int getTransactionCount()
          Returns the number of active transactions.
 

Method Detail

getThreadCount

public int getThreadCount()
Returns the number of active threads.

Returns:
The number of active threads.

getTransactionCount

public int getTransactionCount()
Returns the number of active transactions.

Returns:
The number of active transactions.

getCacheSize

public int getCacheSize()
Returns cache's size.

Returns:
Cache's size.

getCacheLoad

public int getCacheLoad()
Returns the number of cache slots in use.

Returns:
The number of cache slots in use.

getPoolCapacity

public int getPoolCapacity()
Returns the connection pool capacity.

Returns:
The connection pool capacity.

getPoolLoad

public int getPoolLoad()
Returns the number of pool's connections in use.

Returns:
The number of pool's connections in use.