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

org.rrd4j.graph.PDef Maven / Gradle / Ivy

Go to download

A high performance data logging and graphing system for time series data.

There is a newer version: 3.9
Show newest version
package org.rrd4j.graph;

import org.rrd4j.data.DataProcessor;
import org.rrd4j.data.Plottable;

class PDef extends Source {
    private Plottable plottable;

    PDef(String name, Plottable plottable) {
        super(name);
        this.plottable = plottable;
    }

    void requestData(DataProcessor dproc) {
        dproc.addDatasource(name, plottable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy