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

perfcharts.perftest.parser.DataParser Maven / Gradle / Ivy

Go to download

Perfcharts is a free software written in Java, which reads performance testing and system monitoring results from Jmeter, NMON, and/or other applications to produce charts for further analysis.

The newest version!
package perfcharts.perftest.parser;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * A parser is the object that converts raw data to data tables (in CSV format).
 *
 * @author Rayson Zhu
 */
public interface DataParser {
    /**
     * converts raw data to data tables (in CSV format)
     *
     * @param in  the {@link InputStream} containing raw data
     * @param out the {@link OutputStream} to store output
     *
     */
    public void parse(InputStream in, OutputStream out) throws IOException, InterruptedException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy