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

com.hivemq.spi.metrics.HiveMQMetric Maven / Gradle / Ivy

There is a newer version: 3.4.4
Show newest version
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 clazz;


    private HiveMQMetric(final String name, final Class 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 getClazz() {
        return clazz;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy