com.emc.mongoose.scenario.step.CompositeStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-scenario Show documentation
Show all versions of mongoose-scenario Show documentation
Mongoose is a high-load storage performance testing tool
The newest version!
package com.emc.mongoose.scenario.step;
import com.emc.mongoose.scenario.ScenarioParseException;
/**
A scenario step or the scenario steps which can include other scenario steps
*/
public interface CompositeStep
extends Step {
/**
@param child append child step to the list of the child/nested scenario steps
@return new composite step instance with applied child steps
*/
CompositeStep step(final Step child)
throws ScenarioParseException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy