class Flor::Pro::Trace

Public Instance Methods

receive() click to toggle source
Calls superclass method Flor::Procedure#receive
# File lib/flor/punit/trace.rb, line 7
def receive

  t = lookup_tree(@message['from'])

  @executor.unit.storage.trace(exid, nid, 'trace', payload['ret']) \
    if point == 'receive' && (t[0] != '_att' || t[1].size == 1)

  super
end
receive_last() click to toggle source
Calls superclass method Flor::Procedure#receive_last
# File lib/flor/punit/trace.rb, line 17
def receive_last

  payload['ret'] = node_payload_ret

  super
end