NewChangedStep waits up to this many ms for a CheckApply action to occur. Watch function to startup.
(ms uint, expect bool)
| 139 | // NewChangedStep waits up to this many ms for a CheckApply action to occur. |
| 140 | // Watch function to startup. |
| 141 | func NewChangedStep(ms uint, expect bool) Step { |
| 142 | return &changedStep{ |
| 143 | ms: ms, |
| 144 | expect: expect, |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | type clearChangedStep struct { |
| 149 | ms uint |