Sha256: a832f71671364d47171879bf2e595a543e2e01d0a4f8b3483c5d2a36b5239fe8
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 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 [Concurrent::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) key = key.to_s.dup.freeze @_mutex.synchronize do if container.key?(key) raise Error, "There is already an item registered with the key #{key.inspect}" end container[key] = ::Dry::Container::Item.new(item, options) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems