Пример #1
0
 public void setFetchData(FetchData fetchData)
 {
    FetchData = fetchData;
 }
Пример #2
0
 /**
  * Adds DEF datasource with datasource values already available in the FetchData object. This method is
  * used internally by Rrd4n and probably has no purpose outside of it.
  *
  * @param name Source name.
  * @param fetchData Fetched data containing values for the given source name.
  */
 public void addDatasource(String name, FetchData fetchData)
 {
    sources.Add(new DataDef(name, fetchData));
 }
Пример #3
0
 public DataDef(String name, FetchData fetchData)
    : this(name, null, name, null, null)
 {
    setFetchData(fetchData);
 }