groostav
06/12/2017, 7:00 AMoverride fun dispatch(context: CoroutineContext, block: Runnable)
= if(Platform.isFXApplicationThread()) block.run() else Platform.runLater(block)
instead of
override fun dispatch(context: CoroutineContext, block: Runnable) = Platform.runLater(block)
?