Package-level declarations
Provides Dispatchers.JavaFx
context and Dispatchers.Main
implementation for JavaFX UI applications.
Types
Dispatcher for JavaFx application thread with support for awaitPulse.
Properties
Dispatches execution onto JavaFx application thread and provides native delay support.
Functions
Creates an instance of a cold Flow that subscribes to the given ObservableValue and emits its values as they change. The resulting flow is conflated, meaning that if several values arrive in quick succession, only the last one will be emitted. Since this implementation uses ObservableValue.addListener, even if this ObservableValue supports lazy evaluation, eager computation will be enforced while the flow is being collected. All the calls to JavaFX API are performed in Dispatchers.JavaFx. This flow emits at least the initial value.
Suspends coroutine until next JavaFx pulse and returns time of the pulse on resumption. If the Job of the current coroutine is completed while this suspending function is waiting, this function immediately resumes with CancellationException.