JDK-8090493 : I would like a version of Application.launch that did not wait for the JavaFX thread to exit
  • Type: Enhancement
  • Component: javafx
  • Sub-Component: application-lifecycle
  • Affected Version: 7u40
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • Submitted: 2013-09-14
  • Updated: 2018-09-05
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Related Reports
Relates :  
Description
Nearly every time I use Platform.launch, I have to use Thread first to get another thread. This is 
because launch holds on the the thread used to call it until Platform.exit.
It would be very useful if launch worked more like Thread.start and gave you the thread back.
You could then use Platform.join like Thread.join at the end of the program.
This, together with RT-32926, would simplify programming with JavaFX
Comments
I presume you mean Application.launch()? We could consider adding a variant that doesn't wait in a future release.
14-09-2013