Wait class

Wait for a given amount of time until continuing with the next step.

This action can be invoked either using the short-hand version:

- wait: 500

Or using the verbose version:

- wait:
    days: 1 # why would you do this?
    hours: 1
    minutes: 2
    seconds: 50
    milliseconds: 500
    microseconds: 50
Inheritance

Constructors

Wait({int days = 0, int hours = 0, int minutes = 0, int seconds = 0, int milliseconds = 0, int microseconds = 0})
Wait for a given amount of time until continuing with the next step.

Properties

duration Duration
The duration to wait.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

description() String
A human readable description of the action.
override
execute(Tester tester) Future<bool>
Called when it executes the action in a flow file.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited