
com.redislabs.redistimeseries.Measurement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jredistimeseries Show documentation
Show all versions of jredistimeseries Show documentation
Java Client for RedisTimeSeries.
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