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

com.fillumina.performance.producer.suite.SequenceContainer 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 java.util.Iterator;

/**
 *
 * @author Francesco Illuminati
 */
public interface SequenceContainer, S> {

    T setSequence(final S... sequence);

    T setSequence(final Iterable iterable);

    T setSequence(final Iterator iterator);

    /**
     * Allows to define a proper name for each element of the sequence.
     * By default the name is given by the string representation of the
     * element.
     */
    T setSequenceNominator(final SequenceNominator namedSequence);
}