module Actor::Supervisor::Address::Get

Public Class Methods

call(thread_group=nil) click to toggle source
# File lib/actor/supervisor/address/get.rb, line 5
def self.call thread_group=nil
  thread_group ||= Thread.current.group

  Registry.fetch thread_group do
    Messaging::Address::None.instance
  end
end