com.emc.mongoose.base.metrics.snapshot.NamedCountMetricSnapshotImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-base Show documentation
Show all versions of mongoose-base Show documentation
Mongoose is a high-load storage performance testing tool
package com.emc.mongoose.base.metrics.snapshot;
public class NamedCountMetricSnapshotImpl extends NamedMetricSnapshotBase
implements CountMetricSnapshot, NamedMetricSnapshot {
protected final long count;
public NamedCountMetricSnapshotImpl(final String name, final long count) {
super(name);
this.count = count;
}
@Override
public final long count() {
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy