CompletableScene
Properties
The ResourcesRoot singleton. Set by the init method.
The SceneContainer that contains this Scene. Set by the init method.
Functions
This method will be called by the SceneContainer that will display this Scene. This will set the injector, views, sceneContainer and resourcesRoot.
DO NOT BLOCK. Called on the old scene after the transition has been performed, and the old scene is not visible anymore.
DO NOT BLOCK. Called after the old scene has been destroyed and the transition has been completed.
BLOCK. Called on the old scene after the new scene has been initialized, and before the transition is performed.
BLOCK. Called on the old scene after the transition has been performed, and the old scene is not visible anymore.
BLOCK. This is called to setup the scene. Nothing will be shown until this method completes. Here you can read and wait for resources. No need to call super.
DO NOT BLOCK. This is called as a main method of the scene. This is called after sceneInit. This method doesn't need to complete as long as it suspends. Its underlying job will be automatically closed on the sceneAfterDestroy. No need to call super.