My experience with JavaFX is small.I searched internet but still I cannot get one thing: when application.launch(args) is called will this function run till application is closed or not.
I ask this because I used QT before and there function that launches window returns immediately and execution of code below this function call continues while window is displayed. However in case of JavaFX application control stays in this launch function and code below it refuses to execute while application is open. Is it supposed to be so or it is related to problems in my application code(extended from Application)?