DeferredContainer

Decorating container that executes deffered tasks after a request is served from exterior. This decorated will inherit following interfaces only and only if the T also implements them:

  1. Storage!(ObjectFactory, string)
  2. AliasAware!string
  3. FactoryLocator

Decorated container must implement following interfaces:

  1. Container
  2. MutableDecorator!T
  3. Subscribable!ContainerInstantiationEventType
  4. Decorator!Container

Members

Aliases

InheritanceSet
alias InheritanceSet = NoDuplicates!(Filter!(templateOr!(partialSuffixed!(isDerived, Storage!(ObjectFactory, string)), partialSuffixed!(isDerived, AliasAware!string), partialSuffixed!(isDerived, FactoryLocator!ObjectFactory)), InterfacesTuple!T), Container, Decorator!Container)

Set which the switchable container will decorate for T. By default Locator!() and Subscribable!ContainerInstantiationEventType is included.

Classes

DeferredContainer
class DeferredContainer
Undocumented in source.

Parameters

T

The decorated that switchable decorated will decorate.

Meta