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

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

import com.fillumina.performance.consumer.PerformanceConsumer;

/**
 * A {@link PerformanceProducer} contains none or some
 * {@link PerformanceConsumer}s that may notify about the performances it
 * collects.
 *
 * @author Francesco Illuminati
 */
public interface PerformanceProducer {

    PerformanceProducer addPerformanceConsumer(
            final PerformanceConsumer... consumers);

    PerformanceProducer removePerformanceConsumer(
            final PerformanceConsumer... consumers);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy