Sha256: af5629aa45d744efd19b286b7da1a28af2fc87ae546de51c698024b149ac4b83

Contents?: true

Size: 1.35 KB

Versions: 27

Compression:

Stored size: 1.35 KB

Contents

require 'thread'

module Celluloid
  # The Registry allows us to refer to specific actors by human-meaningful names
  class Registry
    class << self
      attr_reader :root
    end

    def initialize
      @registry = {}
      @registry_lock = Mutex.new
    end

    # Register an Actor
    def []=(name, actor)
      actor_singleton = class << actor; self; end
      unless actor_singleton.ancestors.include? ActorProxy
        raise TypeError, "not an actor"
      end

      @registry_lock.synchronize do
        @registry[name.to_sym] = actor
      end

      actor.mailbox << NamingRequest.new(name.to_sym)
    end

    # Retrieve an actor by name
    def [](name)
      @registry_lock.synchronize do
        @registry[name.to_sym]
      end
    end

    alias_method :get, :[]
    alias_method :set, :[]=

    def delete(name)
      @registry_lock.synchronize do
        @registry.delete name.to_sym
      end
    end

    # List all registered actors by name
    def names
      @registry_lock.synchronize { @registry.keys }
    end

    # removes and returns all registered actors as a hash of `name => actor`
    # can be used in testing to clear the registry
    def clear
      hash = nil
      @registry_lock.synchronize do
        hash = @registry.dup
        @registry.clear
      end
      hash
    end

    # Create the default registry
    @root = new
  end
end

Version data entries

27 entries across 27 versions & 3 rubygems

Version Path
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/celluloid-0.15.2/lib/celluloid/registry.rb
celluloid-0.15.2 lib/celluloid/registry.rb
celluloid-0.15.1 lib/celluloid/registry.rb
celluloid-0.15.0 lib/celluloid/registry.rb
celluloid-0.15.0.pre2 lib/celluloid/registry.rb
celluloid-0.15.0.pre lib/celluloid/registry.rb
celluloid-0.14.1 lib/celluloid/registry.rb
celluloid-0.14.1.pre lib/celluloid/registry.rb
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/celluloid-0.14.0/lib/celluloid/registry.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/celluloid-0.14.0/lib/celluloid/registry.rb
celluloid-0.14.0 lib/celluloid/registry.rb
celluloid-0.14.0.pre lib/celluloid/registry.rb
celluloid-0.13.0 lib/celluloid/registry.rb
celluloid-0.13.0.pre2 lib/celluloid/registry.rb
celluloid-0.13.0.pre lib/celluloid/registry.rb
celluloid-0.12.4 lib/celluloid/registry.rb
celluloid-0.12.4.pre2 lib/celluloid/registry.rb
celluloid-0.12.4.pre lib/celluloid/registry.rb
celluloid-0.12.3 lib/celluloid/registry.rb
celluloid-0.12.2 lib/celluloid/registry.rb