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

com.ringcentral.platform.metrics.var.Var Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.var;

import com.ringcentral.platform.metrics.Metric;
import com.ringcentral.platform.metrics.labels.LabelValues;

import java.util.function.Supplier;

public interface Var extends Metric {
    interface Value extends VarMeasurable {}

    void register(Supplier valueSupplier, LabelValues labelValues);
    void deregister(LabelValues labelValues);

    static  Supplier noTotal() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy