Sha256: 14e8a926f915616eee27f6543e43b68de0c435aa6e0bb6cbe9c37bf53d604de7

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

module Dry
  class Container
    # Default registry for registering items with the container
    #
    # @api public
    class Registry
      # @private
      def initialize
        @_mutex = Mutex.new
      end
      # Register an item with the container to be resolved later
      #
      # @param [ThreadSafe::Hash] container
      #   The container
      # @param [Mixed] key
      #   The key to register the container item with (used to resolve)
      # @param [Mixed] item
      #   The item to register with the container
      # @param [Hash] options
      # @option options [Symbol] :call
      #   Whether the item should be called when resolved
      #
      # @raise [Dry::Conainer::Error]
      #   If an item is already registered with the given key
      #
      # @return [Mixed]
      #
      # @api public
      def call(container, key, item, options)
        @_mutex.synchronize do
          if container.key?(key)
            fail Error, "There is already an item registered with the key #{key.inspect}"
          else
            container[key] = Item.new(item, options)
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dry-container-0.2.1 lib/dry/container/registry.rb
dry-container-0.2.0 lib/dry/container/registry.rb