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

com.wavefront.agent.logsharvesting.ChangeableGauge Maven / Gradle / Ivy

There is a newer version: 9999.0
Show newest version
package com.wavefront.agent.logsharvesting;

import com.yammer.metrics.core.Gauge;

/**
 * @author Mori Bellamy ([email protected])
 */
public class ChangeableGauge extends Gauge {
  private T value;

  public void setValue(T value) {
    this.value = value;
  }

  @Override
  public T value() {
    return this.value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy