| JVMStats.java |
/**
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.j2ee.statistics;
// $Id: JVMStats.java,v 1.6.6.1 2005/04/05 17:41:16 starksm Exp $
/**
* Specifies the statistics provided by a Java VM.
*
* @author thomas.diesler@jboss.org
*/
public interface JVMStats extends Stats
{
/**
* Amount of time the JVM has been running.
*/
public CountStatistic getUpTime();
/**
* Size of the JVM's heap.
*/
public BoundedRangeStatistic getHeapSize();
}
| JVMStats.java |