Class: Roast::SystemCogs::Call::Output

Inherits:
Cog::Output show all
Defined in:
lib/roast/system_cogs/call.rb

Overview

Output from running the call cog

Contains the result from the called scope. Use the from method to retrieve the final output from the scope's execution.

See Also

  • Roast::CogInputContext#from - retrieves output from a call cog

Instance Method Summary collapse

Constructor Details

#initialize(execution_manager) ⇒ Output

: (ExecutionManager) -> void



80
81
82
83
# File 'lib/roast/system_cogs/call.rb', line 80

def initialize(execution_manager)
  super()
  @execution_manager = execution_manager
end