-
Notifications
You must be signed in to change notification settings - Fork 1
Module: core::Application
Jovan Gerodetti edited this page Jul 3, 2018
·
3 revisions
exported: default
kind: object
declaration: const
This prototype provides a base construct for the core of an ECMAScript application
Type: string
kind: value
Name of the application, other components can identify it.
Type: string
kind: value
The current version of the application.
Type: string
kind: value
Author meta data.
Type: EventTarget
kind: value
constructor() => {Application}
kind: function
Constructs the Application prototype.
_make(args) => {Application}
kind: function
Do not use any more.
@see Application.constructor
| Name | Type | Description |
|---|---|---|
| args | Array.<any> | {@link Application.constructor} |
init() => {undefined}
kind: function
Initializes the application when bootstrapping.
terminate(reason) => {undefined}
kind: function
Emits a termination notice on the object. This is intended to notify sub components about the termination of the application.
| Name | Type | Description |
|---|---|---|
| reason | string | The reason for the termination. |