tech.ydb.topic.description.MultipleWindowsStat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-topic Show documentation
Show all versions of ydb-sdk-topic Show documentation
Topic client implementation
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;
}
}