com.emc.mongoose.base.metrics.context.ContextBuilder 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.context;
import com.emc.mongoose.base.item.op.OpType;
import com.github.akurilov.commons.system.SizeInBytes;
import java.util.function.IntSupplier;
/** @author veronika K. on 21.11.18 */
public interface ContextBuilder {
C build();
B id(final String id);
B comment(final String comment);
B opType(final OpType opType);
B concurrencyLimit(final int concurrencyLimit);
B concurrencyThreshold(final int concurrencyThreshold);
B itemDataSize(final SizeInBytes itemDataSize);
B stdOutColorFlag(final boolean stdOutColorFlag);
B outputPeriodSec(final int outputPeriodSec);
B actualConcurrencyGauge(final IntSupplier actualConcurrencyGauge);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy