com.caucho.management.server
Interface PersistentStoreMXBean

All Superinterfaces:
ManagedObjectMXBean
All Known Implementing Classes:
ClusterStoreAdmin, StoreAdmin

public interface PersistentStoreMXBean
extends ManagedObjectMXBean

Management interface for the persistent store.

 resin:type=PersistentStore
 


Method Summary
 long getLoadCountTotal()
          Returns the total objects loaded.
 long getLoadFailCountTotal()
          Returns the objects which failed to load.
 long getObjectCount()
          Returns the total current objects
 long getSaveCountTotal()
          Returns the total objects saved.
 long getSaveFailCountTotal()
          Returns the objects which failed to save.
 java.lang.String getStoreType()
          Returns the store type.
 
Methods inherited from interface com.caucho.management.server.ManagedObjectMXBean
getName, getObjectName, getType
 

Method Detail

getStoreType

java.lang.String getStoreType()
Returns the store type.


getObjectCount

long getObjectCount()
Returns the total current objects


getLoadCountTotal

long getLoadCountTotal()
Returns the total objects loaded.


getLoadFailCountTotal

long getLoadFailCountTotal()
Returns the objects which failed to load.


getSaveCountTotal

long getSaveCountTotal()
Returns the total objects saved.


getSaveFailCountTotal

long getSaveFailCountTotal()
Returns the objects which failed to save.