io.orchestrate.client.TimeSeriesBucket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orchestrate-client Show documentation
Show all versions of orchestrate-client Show documentation
A high performance, asynchronous Java client to query the Orchestrate.io service.
The newest version!
package io.orchestrate.client;
public class TimeSeriesBucket {
private final String bucket;
private final long count;
public TimeSeriesBucket(String bucket, long count) {
this.bucket = bucket;
this.count = count;
}
public String getBucket() {
return bucket;
}
public long getCount() {
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy