org.rrd4j.graph.CDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rrd4j Show documentation
Show all versions of rrd4j Show documentation
A high performance data logging and graphing system for time series data.
package org.rrd4j.graph;
import org.rrd4j.data.DataProcessor;
class CDef extends Source {
private final String rpnExpression;
CDef(String name, String rpnExpression) {
super(name);
this.rpnExpression = rpnExpression;
}
void requestData(DataProcessor dproc) {
dproc.addDatasource(name, rpnExpression);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy