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

com.fillumina.performance.consumer.TeePerformanceConsumer 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.consumer;

import com.fillumina.performance.producer.AbstractPerformanceProducer;

/**
 * Allows multiple consumers to get statistics from a single performance test.
 *
 * @author Francesco Illuminati
 */
public class TeePerformanceConsumer
        extends AbstractPerformanceProducer {
    private static final long serialVersionUID = 1L;

    public static TeePerformanceConsumer createFrom(
            final PerformanceConsumer... consumers) {
        return new TeePerformanceConsumer(consumers);
    }

    public TeePerformanceConsumer(final PerformanceConsumer... consumers) {
        super(consumers);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy