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

org.javasimon.javaee.reqreporter.ReporterStopwatchInfo Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package org.javasimon.javaee.reqreporter;

import java.util.ArrayList;
import java.util.List;

import org.javasimon.Split;
import org.javasimon.Stopwatch;

/**
 * Contains cummulated information about about single {@link Stopwatch} with all its reported {@link Split}s.
 * Naturally comparable by total time descending.
 */
public class ReporterStopwatchInfo implements Comparable {
	Stopwatch stopwatch;
	List splits = new ArrayList<>();
	Split maxSplit;
	long total;

	ReporterStopwatchInfo(Stopwatch stopwatch) {
		this.stopwatch = stopwatch;
	}

	@Override
	public int compareTo(ReporterStopwatchInfo o) {
		return total < o.total ? 1 : total == o.total ? 0 : -1;
	}

	public void addSplit(Split split) {
		splits.add(split);
		long runningFor = split.runningFor();
		if (maxSplit == null || runningFor > maxSplit.runningFor()) {
			maxSplit = split;
		}
		total += runningFor;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy