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

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

package org.rrd4j.graph;

import org.rrd4j.data.DataProcessor;

abstract class Source {
    final String name;

    Source(String name) {
        this.name = name;
    }

    abstract void requestData(DataProcessor dproc);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy