![JAR search and dependency download from the Maven repository](/logo.png)
com.fillumina.performance.producer.timer.IterationSettable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of performance-tools Show documentation
Show all versions of performance-tools Show documentation
Configurable tool to easily compare performances of different code
snippets and to take performance telemetry of a running application.
The newest version!
package com.fillumina.performance.producer.timer;
/**
* Defines objects that are able to set the number of iterations.
*
* @author Francesco Illuminati
*/
public interface IterationSettable> {
/**
* How many times each test is repeated in order to get
* a more accurate result.
*
* This value could be overwritten by many of the
* {@link com.fillumina.performance.producer.PerformanceExecutorInstrumenter}s.
*/
@SuppressWarnings(value = "unchecked")
T setIterations(final long iterations);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy