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.



262
263
264
265
266
# File 'lib/vagrant/util/subprocess.rb', line 262

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.



258
259
260
# File 'lib/vagrant/util/subprocess.rb', line 258

def exit_code
  @exit_code
end

#stderrObject (readonly)

Returns the value of attribute stderr.



260
261
262
# File 'lib/vagrant/util/subprocess.rb', line 260

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



259
260
261
# File 'lib/vagrant/util/subprocess.rb', line 259

def stdout
  @stdout
end