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.



286
287
288
289
290
# File 'lib/vagrant/util/subprocess.rb', line 286

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.



282
283
284
# File 'lib/vagrant/util/subprocess.rb', line 282

def exit_code
  @exit_code
end

#stderrObject (readonly)

Returns the value of attribute stderr.



284
285
286
# File 'lib/vagrant/util/subprocess.rb', line 284

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



283
284
285
# File 'lib/vagrant/util/subprocess.rb', line 283

def stdout
  @stdout
end