edu.uci.qa.performancedriver.component.LoopComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of performancedriver Show documentation
Show all versions of performancedriver Show documentation
A performance measuring API with high performance and portability
The newest version!
package edu.uci.qa.performancedriver.component;
import edu.uci.qa.performancedriver.result.Result;
public abstract class LoopComponent extends CloneableComponent
implements ConditionalResultComponent {
public abstract void reset();
public abstract void next();
}