All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javasimon.examples.jmx.custom.CustomStopwatchMXBean Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package org.javasimon.examples.jmx.custom;

import org.javasimon.jmx.StopwatchMXBean;

/**
 * Custom extension to Stopwatch MX bean interface to provide values in millis.
 *
 * @author gquintana
 */
public interface CustomStopwatchMXBean extends StopwatchMXBean {

	long getCounter();

	long getLastInMillis();

	long getMaxInMillis();

	double getMeanInMillis();

	long getMinInMillis();

	double getStandardDeviationInMillis();

	long getTotalInMillis();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy