Interface Factory

Interface for objects able to create some instance of type T.

interface Factory(T) ;

Intent of this interface is to provide a single entry for objects, able to instantiate something.

Methods

NameDescription
destruct Destructs a component of type T.
factory Instantiates component of type T.
type Get the type info of T that is created.