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

se.l4.vibe.timer.TimerSnapshot Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package se.l4.vibe.timer;

import se.l4.vibe.probes.ModifiableData;

/**
 * A sample of the state of a {@link Timer}.
 *  
 * @author Andreas Holstenson
 *
 */
public interface TimerSnapshot
	extends ModifiableData
{
	/**
	 * Get the total time measured as milliseconds.
	 * 
	 * @return
	 */
	long getTotalTimeInMs();
	
	/**
	 * Get the total time measured as nanoseconds.
	 * 
	 * @return
	 */
	long getTotalTimeInNs();
	
	/**
	 * Get how many times we have measured.
	 * 
	 * @return
	 */
	long getSamples();
	
	/**
	 * Get the average time in milliseconds.
	 * 
	 * @return
	 */
	double getAverageInMs();
	
	/**
	 * Get the average time in nanoseconds.
	 * 
	 * @return
	 */
	double getAverageInNs();
	
	/**
	 * Get the minimum time in nanoseconds.
	 * 
	 * @return
	 */
	long getMinimumInNs();
	
	/**
	 * Get the minimum time in milliseconds.
	 * 
	 * @return
	 */
	long getMinimumInMs();
	
	/**
	 * Get the maximum time in nanoseconds.
	 * 
	 * @return
	 */
	long getMaximumInNs();
	
	/**
	 * Get the maximum time in milliseconds.
	 * 
	 * @return
	 */
	long getMaximumInMs();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy