Sha256: f9343b629f79b35e890d014751b7c5ac148f985f466239baa1ec6307247acbe1
Contents?: true
Size: 458 Bytes
Versions: 15
Compression:
Stored size: 458 Bytes
Contents
module Dynflow class Action::Suspended attr_reader :execution_plan_id, :step_id def initialize(action) @world = action.world @execution_plan_id = action.execution_plan_id @step_id = action.run_step_id end def event(event, future = Future.new) @world.event execution_plan_id, step_id, event, future end def <<(event) event event end alias_method :ask, :event end end
Version data entries
15 entries across 15 versions & 1 rubygems