Method: AutomationObject::State::ActionLoop#run
- Defined in:
- lib/automation_object/state/hook_actions/action_loop.rb
#run ⇒ Boolean
Returns run success or not.
28 29 30 31 32 33 34 35 |
# File 'lib/automation_object/state/hook_actions/action_loop.rb', line 28 def run loops.times do # Sub classes implement single run return true if single_run end false end |