Class: SmartCore::Container::DefinitionDSL::Commands::Instantiation::Compose Private
- Inherits:
-
Base
- Object
- Base
- SmartCore::Container::DefinitionDSL::Commands::Instantiation::Compose
- Defined in:
- lib/smart_core/container/definition_dsl/commands/instantiation/compose.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #call(registry) ⇒ void private
- #dup ⇒ SmartCore::Container::DefinitionDSL::Commands::Instantiation::Compose private
- #initialize(container_klass) ⇒ void constructor private
Constructor Details
#initialize(container_klass) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
12 13 14 15 16 17 18 19 |
# File 'lib/smart_core/container/definition_dsl/commands/instantiation/compose.rb', line 12 def initialize(container_klass) raise( SmartCore::ArgumentError, 'Container class should be a subtype of Quantum::Container' ) unless container_klass < SmartCore::Container @container_klass = container_klass end |
Instance Method Details
#call(registry) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
26 27 28 29 30 31 32 |
# File 'lib/smart_core/container/definition_dsl/commands/instantiation/compose.rb', line 26 def call(registry) SmartCore::Container::RegistryBuilder.build_state( container_klass, registry, ignored_commands: [ SmartCore::Container::DefinitionDSL::Commands::Instantiation::FreezeState ] ) end |
#dup ⇒ SmartCore::Container::DefinitionDSL::Commands::Instantiation::Compose
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
38 39 40 |
# File 'lib/smart_core/container/definition_dsl/commands/instantiation/compose.rb', line 38 def dup self.class.new(container_klass) end |