FactoryProvider

A provider that uses a factory function (or other callable) to get the value.

Arguments to the function are resolved using a Resolver (typically a Container). If an Injectable annotation is on the definition of the function, then the template arguments to the Injectable determine how the injected arguments should be resolved. Otherwise, the argument types for the function are used.

The function can either be passed as an alias function argument or as a parameter to the constructor, depending on the needs of the user.

Constructors

this
this(Resolver resolver, F func)

Members

Functions

withProvided
void withProvided(void delegate(void*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

providedType
TypeInfo providedType [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Provider

withProvided
void withProvided(void delegate(void*) dg)

Produce the value. A pointer to the value is passed to a delegate.

provide
T provide()

Provied the value. T must be the same type represented by the TypeInfo returned by providedType.

providedType
TypeInfo providedType [@property getter]

Return a TypeInfo describing the type provided.

Meta