class Pdi::Spoon::Result

General return object for wrapping up a execution call result (execution) and a usable result (value)

Attributes

execution[R]
value[R]

Public Class Methods

new(execution, value) click to toggle source
# File lib/pdi/spoon/result.rb, line 17
def initialize(execution, value)
  @execution = execution
  @value     = value

  freeze
end