class Dynflow::Director::EventWorkItem
Attributes
event[R]
Public Class Methods
new(execution_plan_id, step, event, queue)
click to toggle source
Calls superclass method
Dynflow::Director::StepWorkItem.new
# File lib/dynflow/director.rb, line 50 def initialize(execution_plan_id, step, event, queue) super(execution_plan_id, step, queue) @event = event end
Public Instance Methods
execute()
click to toggle source
# File lib/dynflow/director.rb, line 55 def execute @step.execute(@event.event) end