BaseApplication
public class
system.application.BaseApplication
Description
Base abstract application class that can be extended by different application types. Extend the Application or the ConsoleApplication class for your own application.
API overview
Constructor
Functions
Public functions
| setMemoryWarningLevel ( megabytes: Number ): Void |
Sets a warning level in megabytes for the Application's VM If the Application VM exceeds this level a warning will be displayed in the console |
Protected functions
Constructor
BaseApplication ()
Functions
getFullTypeName
(): String
Inherited from Object
native
Gets the fully qualified type name of the Object. The fully qualified type name includes the package of the type.
Returns
| String | fully qualified type name of the Object. |
getType
(): Type
Inherited from Object
native
Gets the Type that describes the Object.
Returns
| Type | The Type that describes the object. |
getTypeName
(): String
Inherited from Object
native
Gets the type name of the Object.
Returns
| String | type name of the Object. |
setMemoryWarningLevel ( megabytes: Number ): Void
Sets a warning level in megabytes for the Application's VM If the Application VM exceeds this level a warning will be displayed in the console. Please note that this warning level is purely for the scripting VM and not other assets that may be loaded
Parameters
| megabytes: Number | The amount of ram in megabytes that causes a warning when exceeded |