commit | f724f6e2fe7c20cb48b69cd7b19b2658313231e4 | [log] [tgz] |
---|---|---|
author | Roman Elizarov <elizarov@gmail.com> | Fri Apr 07 18:06:22 2017 +0300 |
committer | Roman Elizarov <elizarov@gmail.com> | Fri Apr 07 18:06:22 2017 +0300 |
tree | 0e574b362bb206257195e72e588c335653d0752e | |
parent | ecda27fa01602e42922eadc16ef34b920b8006bb [diff] |
Starting coroutine in UI event handlers without dispatch in UI guide
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1 release.
Basic modules:
Modules that provide builders and iteration support for various reactive streams libraries:
Modules that provide coroutine dispatchers for various single-threaded UI libraries:
UI
context for Android applications.JavaFx
context for JavaFX UI applications.Swing
context for Swing UI applications.Note that these libraries are experimental and are subject to change.
The libraries are published to kotlinx bintray repository and also linked to JCenter.
These libraries require kotlin compiler version 1.1.x
and require kotlin runtime of the same version as a dependency.
Add Bintray JCenter repository to <repositories>
section:
<repository> <id>central</id> <url>http://jcenter.bintray.com</url> </repository>
Add dependencies (you can also add other modules that you need):
<dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>0.15-SNAPSHOT</version> </dependency>
And make sure that you use the right Kotlin version:
<properties> <kotlin.version>1.1.1</kotlin.version> </properties>
Add Bintray JCenter repository:
repositories { jcenter() }
Add dependencies (you can also add other modules that you need):
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.15-SNAPSHOT'
And make sure that you use the right Kotlin version:
buildscript { ext.kotlin_version = '1.1.1' }