Class: Bsdkrun::ExecResult
- Inherits:
-
Data
- Object
- Data
- Bsdkrun::ExecResult
- Defined in:
- lib/bsdkrun/types.rb
Overview
A Client#exec result: the guest command's exit status and its
combined (stdout+stderr, in arrival order) output, decoded from the
shellOutput subscription's base64 frames.
Instance Attribute Summary collapse
- #exit_code ⇒ Integer readonly
-
#output ⇒ String
readonly
Binary-safe combined output.
Instance Attribute Details
#exit_code ⇒ Integer (readonly)
221 |
# File 'lib/bsdkrun/types.rb', line 221 ExecResult = Data.define(:exit_code, :output) |
#output ⇒ String (readonly)
Returns binary-safe combined output.
221 |
# File 'lib/bsdkrun/types.rb', line 221 ExecResult = Data.define(:exit_code, :output) |