io.quarkus.redis.datasource.timeseries.SampleGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-redis-client Show documentation
Show all versions of quarkus-redis-client Show documentation
Connect to Redis in either imperative or reactive style
package io.quarkus.redis.datasource.timeseries;
import java.util.List;
import java.util.Map;
/**
* Represent a group of samples returned by the range of {@code mget} methods.
*/
public class SampleGroup {
private final String group;
private final Map labels;
private final List samples;
public SampleGroup(String group, Map labels, List samples) {
this.group = group;
this.labels = labels;
this.samples = samples;
}
public String group() {
return group;
}
public Map labels() {
return labels;
}
public List samples() {
return samples;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy