Container

The dependency container maintains all dependencies registered with it.

Dependencies registered by a container can be resolved as long as they are still registered with the container. Upon resolving a dependency, an instance is fetched according to a specific scope which dictates how instances of dependencies are created. Resolved dependencies will be injected before being returned.

In most cases you want to use a global singleton dependency container provided by getInstance() to manage all dependencies. You can still create new instances of this class for exceptional situations.

Members

Functions

clearAllRegistrations
void clearAllRegistrations()

Clears all dependency registrations managed by this container.

register
Registration register()

Register a dependency by concrete class type.

register
Registration register(RegistrationOptionsTuple options)

Register a dependency by super type.

removeRegistration
void removeRegistration()

Removes a registered dependency by type.

resolve
RegistrationType resolve()

Resolve dependencies.

resolve
QualifierType resolve()

Resolve dependencies using a qualifier.

resolveAll
RegistrationType[] resolveAll()

Resolve all dependencies registered to a super type.

Static functions

getInstance
shared(Container) getInstance()

Returns a global singleton instance of a dependency container.

Meta