class Flor::Pro::Echo

Public Instance Methods

receive_last() click to toggle source
# File lib/flor/pcore/echo.rb, line 17
def receive_last

  payload['ret'] = node_payload_ret

  wrap
end
receive_last_att() click to toggle source
Calls superclass method Flor::Procedure#receive_last_att
# File lib/flor/pcore/echo.rb, line 7
def receive_last_att

  case ret = payload['ret']
  when String then puts(ret)
  else pp(ret)
  end

  super
end