Package-level declarations

Provides Dispatchers.JavaFx context and Dispatchers.Main implementation for JavaFX UI applications.

Types

Link copied to clipboard

Dispatcher for JavaFx application thread with support for awaitPulse.

Properties

Link copied to clipboard

Dispatches execution onto JavaFx application thread and provides native delay support.

Functions

Link copied to clipboard
fun <T> ObservableValue<T>.asFlow(): Flow<T>

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.

Link copied to clipboard
suspend fun awaitPulse(): Long

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.