Package org.kairosdb.client.builder

Examples of org.kairosdb.client.builder.DataPoint


      JsonArray array = (JsonArray) json.getAsJsonObject().get("values");
      for (JsonElement element : array)
      {
        JsonArray pair = element.getAsJsonArray();
        dataPoints.add(new DataPoint(pair.get(0).getAsLong(), context.<DataPoint>deserialize(pair.get(1), dataPointValueClass)));
      }
    }

    return new Results(name, tags, dataPoints, groupResults);
  }
View Full Code Here

TOP

Related Classes of org.kairosdb.client.builder.DataPoint

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.