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

com.fillumina.performance.producer.timer.IterationSettable Maven / Gradle / Ivy

Go to download

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