Class: SwarmSDK::Workflow::TransformerExecutor::TransformerResult

Inherits:
Struct
  • Object
show all
Defined in:
lib/swarm_sdk/workflow/transformer_executor.rb

Overview

Result object for transformer execution

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#contentObject

Returns the value of attribute content

Returns:

  • the current value of content



96
97
98
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96

def content
  @content
end

#error_messageObject

Returns the value of attribute error_message

Returns:

  • the current value of error_message



96
97
98
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96

def error_message
  @error_message
end

#haltObject

Returns the value of attribute halt

Returns:

  • the current value of halt



96
97
98
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96

def halt
  @halt
end

#skip_executionObject

Returns the value of attribute skip_execution

Returns:

  • the current value of skip_execution



96
97
98
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96

def skip_execution
  @skip_execution
end

#successObject

Returns the value of attribute success

Returns:

  • the current value of success



96
97
98
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96

def success
  @success
end

Instance Method Details

#halt?Boolean

Returns:



101
102
103
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 101

def halt?
  halt
end

#skip_execution?Boolean

Returns:



97
98
99
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 97

def skip_execution?
  skip_execution
end