Application
Attributes
- Graph
-
- Supertypes
-
trait Apptrait DelayedInitclass Objecttrait Matchableclass Any
- Self type
-
Application.type
Members list
Value members
Inherited methods
The command line arguments passed to the application's main method.
The command line arguments passed to the application's main method.
Attributes
- Inherited from:
- App
The main method. This stores all arguments so that they can be retrieved with args and then executes all initialization code segments in the order in which they were passed to delayedInit.
The main method. This stores all arguments so that they can be retrieved with args and then executes all initialization code segments in the order in which they were passed to delayedInit.
Value parameters
- args
-
the arguments passed to the main method
Attributes
- Inherited from:
- App
Deprecated and Inherited methods
The init hook. This saves all initialization code for execution within main. This method is normally never called directly from user code. Instead it is called as compiler-generated code for those classes and objects (but not traits) that inherit from the DelayedInit trait and that do not themselves define a delayedInit method.
The init hook. This saves all initialization code for execution within main. This method is normally never called directly from user code. Instead it is called as compiler-generated code for those classes and objects (but not traits) that inherit from the DelayedInit trait and that do not themselves define a delayedInit method.
Value parameters
- body
-
the initialization code to be stored for later execution
Attributes
- Deprecated
-
[Since version 2.11.0]the delayedInit mechanism will disappear - Definition Classes
-
App -> DelayedInit
- Inherited from:
- App
Inherited fields
The time when the execution of this program started, in milliseconds since 1 January 1970 UTC.
The time when the execution of this program started, in milliseconds since 1 January 1970 UTC.
Attributes
- Inherited from:
- App