Method: Dynflow::Persistence#load_delayed_plan
- Defined in:
- lib/dynflow/persistence.rb
#load_delayed_plan(execution_plan_id) ⇒ Object
121 122 123 124 125 |
# File 'lib/dynflow/persistence.rb', line 121 def load_delayed_plan(execution_plan_id) hash = adapter.load_delayed_plan(execution_plan_id) return nil unless hash DelayedPlan.new_from_hash(@world, hash) end |