com.hivemq.spi.metrics.HiveMQMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-spi Show documentation
Show all versions of hivemq-spi Show documentation
The Service Provider Interfaces for developing HiveMQ plugins.
package com.hivemq.spi.metrics;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.Metric;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* A convenience class to specify constant names and types of the internal HiveMQ metrics
*
* @author Christoph Schäbel
*/
public class HiveMQMetric {
private final String name;
private final Class extends Metric> clazz;
private HiveMQMetric(final String name, final Class extends Metric> clazz) {
this.name = name;
this.clazz = clazz;
}
public static HiveMQMetric valueOf(String name, Class metricClass) {
checkNotNull(name, "Name cannot be null");
return new HiveMQMetric<>(name, metricClass);
}
public static HiveMQMetric> gaugeValue(String name) {
checkNotNull(name, "Name cannot be null");
return new HiveMQMetric<>(name, Gauge.class);
}
public String name() {
return name;
}
public Class extends Metric> getClazz() {
return clazz;
}
}