5.5.2 Artifact Events - Reference Documentation
Authors: Andres Almiray
Version: 1.2.0
5.5.2 Artifact Events
The following events will be triggered by the application when dealing with artifactsNewInstance[klass, type, instance]
- when a new artifact is created.DestroyInstance[klass, type, instance]
- when an artifact instance is destroyed.LoadAddonsStart[app]
- before any addons are initialized, during the Initialize phase.LoadAddonsEnd[app, addons]
- after all addons have been initialized, during the Initialize phase.addons
is a Map of <name, instance> pairs.LoadAddonStart[name, addon, app]
- before an addon is initialized, during the Initialize phase.LoadAddonEnd[name, addon, app]
- after an addon has been initialized, during the Initialize phase.
InitializeMVCGroup[configuration, group]
- when a new MVC group is initialized.configuration
is of type MVCGroupConfiguration;group
is of type MVCGroup.CreateMVCGroup[group]
- when a new MVC group is created.configuration
is of type MVCGroupConfiguration;group
is of type MVCGroup.DestroyMVCGroup[group]
- when an MVC group is destroyed.group
is of type MVCGroup.