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

tech.ydb.topic.description.MultipleWindowsStat Maven / Gradle / Ivy

The newest version!
package tech.ydb.topic.description;

/**
 * @author Nikolay Perfilov
 */
public class MultipleWindowsStat {
    private final long perMinute;
    private final long perHour;
    private final long perDay;

    public MultipleWindowsStat(long perMinute, long perHour, long perDay) {
        this.perMinute = perMinute;
        this.perHour = perHour;
        this.perDay = perDay;
    }

    public long getPerMinute() {
        return perMinute;
    }

    public long getPerHour() {
        return perHour;
    }

    public long getPerDay() {
        return perDay;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy