Celluloid::SystemEvent::LinkingEvent
Request to link with another actor
# File lib/celluloid/system_events.rb, line 54 def process(links) case type when :link then links << actor when :unlink then links.delete actor end actor.mailbox << LinkingResponse.new(Actor.current, type) end