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;
}
}