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

io.orchestrate.client.TimeSeriesBucket Maven / Gradle / Ivy

Go to download

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