Class AutoStepDelay
- java.lang.Object
-
- org.wildstang.framework.auto.AutoStep
-
- org.wildstang.framework.auto.steps.control.AutoStepDelay
-
public class AutoStepDelay extends AutoStep
This step delays testing for the specified number of cycles. Note: If used in a parallel step group, it insures that the group waits for at least the specified number of cycles, instead.
-
-
Constructor Summary
Constructors Constructor Description AutoStepDelay(int msDelay)
Constructing creates a new timer for msDelay ms.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initialize()
Starts the timer on initialization.java.lang.String
toString()
Returns the name of the AutoStep, "Delay for X ms".void
update()
Once timer has passed the AutoStep finishes.-
Methods inherited from class org.wildstang.framework.auto.AutoStep
isFinished, setFinished, setFinished
-
-
-
-
Method Detail
-
initialize
public void initialize()
Starts the timer on initialization.- Specified by:
initialize
in classAutoStep
-
update
public void update()
Once timer has passed the AutoStep finishes.
-
-