com.emc.mongoose.scenario.json.step.BasicTaskStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-scenario-json Show documentation
Show all versions of mongoose-scenario-json Show documentation
Mongoose is a high-load storage performance testing tool
package com.emc.mongoose.scenario.json.step;
import com.emc.mongoose.ui.config.Config;
/**
Created by andrey on 07.06.16.
*/
public final class BasicTaskStep
implements Step {
private final Runnable task;
public BasicTaskStep(final Runnable task) {
this.task = task;
}
@Override
public final Config getConfig() {
return null;
}
@Override
public final void close() {
}
@Override
public final void run() {
task.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy