com.wavefront.agent.logsharvesting.ReadProcessorContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent.logsharvesting;
/** @author Mori Bellamy ([email protected]) */
public class ReadProcessorContext {
private final Double value;
public ReadProcessorContext(Double value) {
this.value = value;
}
public Double getValue() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy