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

com.fnklabs.metrics.GaugeImpl Maven / Gradle / Ivy

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