Class: Proxy::Dynflow::TaskLauncher::Abstract
- Inherits:
-
Object
- Object
- Proxy::Dynflow::TaskLauncher::Abstract
- Defined in:
- lib/smart_proxy_dynflow/task_launcher/abstract.rb
Instance Attribute Summary collapse
-
#callback ⇒ Object
readonly
Returns the value of attribute callback.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#results ⇒ Object
readonly
Returns the value of attribute results.
-
#world ⇒ Object
readonly
Returns the value of attribute world.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(world, callback, options = {}) ⇒ Abstract
constructor
A new instance of Abstract.
- #launch!(_input) ⇒ Object
Constructor Details
#initialize(world, callback, options = {}) ⇒ Abstract
Returns a new instance of Abstract.
5 6 7 8 9 10 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 5 def initialize(world, callback, = {}) @world = world @callback = callback = @results = {} end |
Instance Attribute Details
#callback ⇒ Object (readonly)
Returns the value of attribute callback.
4 5 6 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 4 def callback @callback end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
4 5 6 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 4 def end |
#results ⇒ Object (readonly)
Returns the value of attribute results.
4 5 6 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 4 def results @results end |
#world ⇒ Object (readonly)
Returns the value of attribute world.
4 5 6 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 4 def world @world end |
Class Method Details
.input_format ⇒ Object
16 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 16 def self.input_format; end |
Instance Method Details
#launch!(_input) ⇒ Object
12 13 14 |
# File 'lib/smart_proxy_dynflow/task_launcher/abstract.rb', line 12 def launch!(_input) raise NotImplementedError end |