
com.fnklabs.metrics.GaugeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-dropwizard Show documentation
Show all versions of metrics-dropwizard Show documentation
utils for working with metrics
The newest version!
package com.fnklabs.metrics;
public class GaugeImpl implements Gauge {
private final com.codahale.metrics.Gauge gauge;
public GaugeImpl(com.codahale.metrics.Gauge gauge) {this.gauge = gauge;}
@Override
public T getValue() {
return gauge.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy