Home
last modified time | relevance | path

Searched refs:JavaFx (Results 1 – 25 of 25) sorted by relevance

/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/src/
DJavaFxDispatcher.kt22 public val Dispatchers.JavaFx: JavaFxDispatcher in <lambda>() constant
23 get() = kotlinx.coroutines.javafx.JavaFx in <lambda>()
56 …e fun createDispatcher(allFactories: List<MainDispatcherFactory>): MainCoroutineDispatcher = JavaFx in createDispatcher()
74 internal object JavaFx : JavaFxDispatcher() { object
106 with (cont) { JavaFx.resumeUndispatched(now) } in handle()
DJavaFxConvert.kt40 }.flowOn(Dispatchers.JavaFx).conflate() in <lambda>()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/test/
DJavaFxDispatcherTest.kt28 val job = launch(Dispatchers.JavaFx) { in testDelay()
47 runBlocking(Dispatchers.JavaFx) { in testImmediateDispatcherYield()
51 launch(Dispatchers.JavaFx.immediate) { in testImmediateDispatcherYield()
DJavaFxObservableAsFlowTest.kt32 launch(Dispatchers.JavaFx) { in <lambda>()
52 withContext(Dispatchers.JavaFx) { in <lambda>()
DJavaFxStressTest.kt33 withContext(Dispatchers.JavaFx) { in <lambda>()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/
DREADME.md3 Provides `Dispatchers.JavaFx` context and `Dispatchers.Main` implementation for JavaFX UI applicati…
10 Provides `Dispatchers.JavaFx` context and `Dispatchers.Main` implementation for JavaFX UI applicati…
/external/kotlinx.coroutines/ui/
Dcoroutines-guide-ui.md16 * [kotlinx-coroutines-javafx](kotlinx-coroutines-javafx) -- `Dispatchers.JavaFx` context for JavaFX…
20 implementation (Android, JavaFx or Swing) is discovered by [`ServiceLoader`](https://docs.oracle.co…
21 For example, if you are writing JavaFx application, you can use either `Dispatchers.Main` or `Dispa…
32 * [JavaFx](#javafx)
52 The runnable examples in this guide are presented for JavaFx. The advantage is that all the example…
57 ### JavaFx subsection
59 The basic example application for JavaFx consists of a window with a text label named `hello` that …
62 ![UI example for JavaFx](ui-example-javafx.png)
128 [Dispatchers.JavaFx][kotlinx.coroutines.Dispatchers.JavaFx]
130 the JavaFx application thread. We import it as `Main` to make all the presented examples
[all …]
DREADME.md10 * [kotlinx-coroutines-javafx](kotlinx-coroutines-javafx/README.md) -- `Dispatchers.JavaFx` context …
Dknit.code.include10 import kotlinx.coroutines.javafx.JavaFx as Main
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/test/guide/
Dexample-ui-basic-01.kt10 import kotlinx.coroutines.javafx.JavaFx as Main
Dexample-ui-basic-02.kt10 import kotlinx.coroutines.javafx.JavaFx as Main
Dexample-ui-advanced-01.kt10 import kotlinx.coroutines.javafx.JavaFx as Main
Dexample-ui-basic-03.kt10 import kotlinx.coroutines.javafx.JavaFx as Main
Dexample-ui-advanced-02.kt10 import kotlinx.coroutines.javafx.JavaFx as Main
Dexample-ui-actor-01.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
Dexample-ui-actor-03.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
Dexample-ui-actor-02.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
Dexample-ui-blocking-01.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
Dexample-ui-blocking-02.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
Dexample-ui-blocking-03.kt10 import kotlinx.coroutines.javafx.JavaFx as Main in <lambda>()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/test/examples/
DFxAsFlow.kt27 get() = JavaFx + job
DFxExampleApp.kt55 get() = Dispatchers.JavaFx + job in log()
/external/kotlinx.coroutines/
DCHANGES.md48 * `JavaFx` version is updated to 17.0.2 in `kotlinx-coroutines-javafx` (#3671)..
DCHANGES_UP_TO_1.7.md30 * `JavaFx` version is updated to 17.0.2 in `kotlinx-coroutines-javafx` (#3671)..
80 * `JavaFx` version is updated to 17.0.2 in `kotlinx-coroutines-javafx` (#3671).
595 * `ObservableValue.asFlow` added to JavaFx integration module (#1695).
887 * Fixed `JavaFx` initialization bug (#816).
901 * Use only public API during `JavaFx` instantiation, fixes warnings on Java 9 and build on Java 11 …
937 * Added `Dispatchers.Main` to common dispatchers, which can be used from Android, Swing and JavaFx
1069 …* Attempts to use `runBlocking` from any supported UI thread (Android, JavaFx, Swing) will result …
1075 * Fixed JavaFx `UI` on Java 9 (see #443).
1353 * JavaFx toolkit is now initialized by `JavaFx` context (see #108).
1545 * `delay` implementation in Swing, JavaFx, and scheduled executors is fixed to avoid an extra dispa…
DREADME.md29 …* [Dispatchers] object with [Main][Dispatchers.Main] dispatcher for Android/Swing/JavaFx, and [Def…