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

com.redislabs.redistimeseries.Measurement Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.redislabs.redistimeseries;

public class Measurement {
  private final String sourceKey;
  private final long timestamp;
  private final double value;
  
  public Measurement(String sourceKey, long timestamp, double value) {
    this.sourceKey = sourceKey;
    this.timestamp = timestamp;
    this.value = value;
  }

  public String getSourceKey() {
    return sourceKey;
  }

  public long getTimestamp() {
    return timestamp;
  }

  public double getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy