class SimplerWorkflow::Workflow::DefaultEventHandler

Attributes

workflow[RW]

Public Class Methods

new(workflow) click to toggle source
# File lib/simpler_workflow/workflow.rb, line 163
def initialize(workflow)
  @workflow = workflow
end

Public Instance Methods

call(*args) click to toggle source
# File lib/simpler_workflow/workflow.rb, line 187
def call(*args); end
domain() click to toggle source
# File lib/simpler_workflow/workflow.rb, line 171
def domain
  workflow.domain
end
initial_activity_type() click to toggle source
# File lib/simpler_workflow/workflow.rb, line 183
def initial_activity_type
  workflow.initial_activity_type
end
last_activity(*args) click to toggle source
# File lib/simpler_workflow/workflow.rb, line 175
def last_activity(*args)
  workflow.last_activity(*args)
end
last_input(*args) click to toggle source
# File lib/simpler_workflow/workflow.rb, line 179
def last_input(*args)
  workflow.last_input(*args)
end
scheduled_event(*args) click to toggle source
# File lib/simpler_workflow/workflow.rb, line 167
def scheduled_event(*args)
  workflow.scheduled_event(*args)
end