seiv
05/28/2019, 12:52 PMclass MyApp : App(MyView::class) {
override fun start(stage: Stage) {
... some custom code
}
override fun stop() {
if(db_still_up) {
notify_warn("can't exit right now")
} else {
Platform.exit()
System.exit(0)
}
}
}
alilosoft
05/28/2019, 2:45 PM