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

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

The newest version!
package org.metricssampler.reader;

/**
 * A reader that can fetch all metrics' names and values at once. 
 */
public interface BulkMetricsReader extends MetricsReader {
	Metrics readAllMetrics() throws MetricReadException;

	default Iterable readNames() {
		return readAllMetrics().getNames();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy