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

org.metricssampler.writer.MetricsWriter Maven / Gradle / Ivy

The newest version!
package org.metricssampler.writer;

import org.metricssampler.reader.Metrics;

public interface MetricsWriter {
	void open() throws MetricWriteException;
	void close();

	void write(Metrics metrics) throws MetricWriteException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy