Class: Vagrant::Util::Subprocess::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant/util/subprocess.rb

Overview

Container class to store the results of executing a subprocess.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exit_code, stdout, stderr) ⇒ Result

Returns a new instance of Result.



239
240
241
242
243
# File 'lib/vagrant/util/subprocess.rb', line 239

def initialize(exit_code, stdout, stderr)
  @exit_code = exit_code
  @stdout    = stdout
  @stderr    = stderr
end

Instance Attribute Details

#exit_codeObject (readonly)

Returns the value of attribute exit_code.



235
236
237
# File 'lib/vagrant/util/subprocess.rb', line 235

def exit_code
  @exit_code
end

#stderrObject (readonly)

Returns the value of attribute stderr.



237
238
239
# File 'lib/vagrant/util/subprocess.rb', line 237

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



236
237
238
# File 'lib/vagrant/util/subprocess.rb', line 236

def stdout
  @stdout
end