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

org.metricssampler.reader.MetricsReader Maven / Gradle / Ivy

The newest version!
package org.metricssampler.reader;

import java.util.Map;

/**
 * A reader that is able to read metrics from an input.
 */
public interface MetricsReader {
	void open() throws MetricReadException;

	Iterable readNames();

	void close();

	/**
	 * @return an unmodifiable map containing the variables from the input configuration overridden/extended by the dynamic properties
	 *         generated by this reader when it was created.
	 */
	Map getVariables();

	void reset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy