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

com.bazaarvoice.emodb.common.dropwizard.metrics.GenericGauge Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.common.dropwizard.metrics;

import com.codahale.metrics.Gauge;

public class GenericGauge implements Gauge {
    private volatile Object _value;

    @Override
    public Object getValue() {
        return _value;
    }

    public void set(Object value) {
        _value = value;
    }
}