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

com.fillumina.performance.producer.suite.ParametrizedExecutor 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.suite;

import com.fillumina.performance.producer.LoopPerformancesHolder;

/**
 *
 * @author Francesco Illuminati
 */
public interface ParametrizedExecutor

{ /** * Executes the given test against the previously added parameters. * The default name for the test will be {@code null}. * * @return the same performance given to the consumer. */ LoopPerformancesHolder executeTest( final ParametrizedRunnable test); /** * Executes the given named test against the previously added parameters. * * @return the same performance given to the consumer. */ @SuppressWarnings(value = "unchecked") LoopPerformancesHolder executeTest(final String name, final ParametrizedRunnable test); LoopPerformancesHolder ignoreTest( final ParametrizedRunnable test); LoopPerformancesHolder ignoreTest(final String name, final ParametrizedRunnable test); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy