Package co.cask.cdap.metrics.data

Examples of co.cask.cdap.metrics.data.TimeValue


    final ImmutableList.Builder<TimeValue> timeValues = ImmutableList.builder();

    return new Builder() {
      @Override
      public Builder addData(long timestamp, int value) {
        return addData(new TimeValue(timestamp, value));
      }

      @Override
      public Builder addData(TimeValue timeValue) {
        timeValues.add(timeValue);
View Full Code Here

TOP

Related Classes of co.cask.cdap.metrics.data.TimeValue

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.