com.emc.mongoose.base.load.step.LoadStep 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.load.step;
import com.emc.mongoose.base.concurrent.Daemon;
import com.emc.mongoose.base.metrics.snapshot.AllMetricsSnapshot;
import com.github.akurilov.commons.concurrent.AsyncRunnable;
import java.io.IOException;
import java.rmi.RemoteException;
import java.util.List;
import java.util.concurrent.TimeUnit;
public interface LoadStep extends Daemon {
/** @return the step id */
String loadStepId() throws RemoteException;
long runId() throws RemoteException;
String getTypeName() throws RemoteException;
List extends AllMetricsSnapshot> metricsSnapshots() throws RemoteException;
@Override
AsyncRunnable start() throws RemoteException;
@Override
AsyncRunnable await() throws InterruptedException, RemoteException;
@Override
boolean await(final long timeout, final TimeUnit timeUnit)
throws InterruptedException, RemoteException;
@Override
AsyncRunnable stop() throws RemoteException;
void close() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy