
com.redislabs.redistimeseries.Range 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;
import java.util.Map;
public class Range {
private final String key;
private final Map lables;
private final Value[] values;
public Range(String key, Map labels, Value[] values) {
this.key = key;
this.lables = labels;
this.values = values;
}
public String getKey() {
return key;
}
public Map getLables() {
return lables;
}
public Value[] getValues() {
return values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy