di ioc containers - Solar-AS/DI-IoC GitHub Wiki

Dependency Injection with IoC Containers

  • A dependency injector knows how to find (and create) every dependency needed in the system.

  • This knowledge is provided by someone else at another moment of the application lifecycle.

  • The container will satisfy all dependencies of a given class and, recursively, the collaborators of those dependencies

  • No dependency on the container should be taken by any of the classes

Previous | Next