Package org.collectd.api

Examples of org.collectd.api.DataSet


            new BufferedReader(new InputStreamReader(is));

        String line;

        while ((line = reader.readLine()) != null) {
            DataSet ds;

            ds = DataSet.parseDataSet (line);
            if (ds != null)
            {
                String type = ds.getType ();
                List<DataSource> dsrc = ds.getDataSources ();

                this._types.put (type, dsrc);
            }
        }
    } /* void load */
 
View Full Code Here

TOP

Related Classes of org.collectd.api.DataSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.