Class: Ralph::Agents::Base::ExecutionResult
- Inherits:
-
Struct
- Object
- Struct
- Ralph::Agents::Base::ExecutionResult
- Defined in:
- lib/ralph/agents/base.rb
Overview
Result of executing an agent process
Instance Attribute Summary collapse
-
#exit_code ⇒ Object
Returns the value of attribute exit_code.
-
#stderr_text ⇒ Object
Returns the value of attribute stderr_text.
-
#stdout_text ⇒ Object
Returns the value of attribute stdout_text.
-
#tool_counts ⇒ Object
Returns the value of attribute tool_counts.
Instance Method Summary collapse
Instance Attribute Details
#exit_code ⇒ Object
Returns the value of attribute exit_code
11 12 13 |
# File 'lib/ralph/agents/base.rb', line 11 def exit_code @exit_code end |
#stderr_text ⇒ Object
Returns the value of attribute stderr_text
11 12 13 |
# File 'lib/ralph/agents/base.rb', line 11 def stderr_text @stderr_text end |
#stdout_text ⇒ Object
Returns the value of attribute stdout_text
11 12 13 |
# File 'lib/ralph/agents/base.rb', line 11 def stdout_text @stdout_text end |
#tool_counts ⇒ Object
Returns the value of attribute tool_counts
11 12 13 |
# File 'lib/ralph/agents/base.rb', line 11 def tool_counts @tool_counts end |
Instance Method Details
#combined_output ⇒ Object
12 13 14 |
# File 'lib/ralph/agents/base.rb', line 12 def combined_output "#{stdout_text}\n#{stderr_text}" end |