class Proxy::Dynflow::TaskLauncher::Single
Public Class Methods
input_format()
click to toggle source
# File lib/smart_proxy_dynflow/task_launcher/single.rb, line 4 def self.input_format { :action_class => "MyActionClass", :action_input => {} } end
Public Instance Methods
launch!(input)
click to toggle source
# File lib/smart_proxy_dynflow/task_launcher/single.rb, line 8 def launch!(input) triggered = trigger(options[:parent], action_class(input), with_callback(input.fetch('action_input', {}))) @results = format_result(triggered) triggered end