GenericFactory

A generic factory, is a factory that instantiates component of type T using InstanceFactory and a list of PropertyConfigurers.

A generic factory, is a factory that instantiates component of type T using InstanceFactory and a list of PropertyConfigurers. It can optionally provide a Locator!() object to InstanceFactory and PropertyConfigurer to be used as a source of component.

@safe
interface GenericFactory : Factory!T, InstanceFactoryAware!T, PropertyConfigurersAware!T, InstanceDestructorAware!T(
T
) {}

Members

Aliases

locator
alias locator = Factory!T.locator
Undocumented in source.

Properties

locator
inout(Locator!()) locator [@property getter]

Get the GenericFactory locator.

Meta