class Proxy::RemoteExecution::Ssh::Dispatcher::CommandUpdate

update sent back to the suspended action

Attributes

buffer[R]
exit_status[R]

Public Class Methods

new(buffer, exit_status) click to toggle source
# File lib/smart_proxy_remote_execution_ssh/dispatcher.rb, line 35
def initialize(buffer, exit_status)
  @buffer      = buffer
  @exit_status = exit_status
end

Public Instance Methods

buffer_to_hash() click to toggle source
# File lib/smart_proxy_remote_execution_ssh/dispatcher.rb, line 40
def buffer_to_hash
  buffer.map(&:to_hash)
end