commit | 0a7883910513f7ea1dc9a4e255694c8ab39d55c3 | [log] [tgz] |
---|---|---|
author | Roman Elizarov <elizarov@gmail.com> | Wed Feb 15 17:52:12 2017 +0300 |
committer | Roman Elizarov <elizarov@gmail.com> | Wed Feb 15 17:55:29 2017 +0300 |
tree | 8a39c97bfed96e10e87aec299d9b352c522cf6e8 | |
parent | 33ecdcab0094730a2327470b6a1b54fe774e128b [diff] |
RendezvousChannel is now an open class with a afterClose and onEnqueuedReceive/onCancelledReceive extension points More efficient cancellable suspending functions for Channel.send/receive and Mutex.lock
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-rc-69 release.
Swing
context for Swing UI applications.JavaFx
context for JavaFX UI applications.Note that these libraries are experimental and are subject to change.
The libraries are published to kotlin-eap-1.1 bintray repository.
These libraries require kotlin compiler version to be at least 1.1.0-rc-69
and require kotlin runtime of the same version as a dependency, which can be obtained from the same repository.
Add the bintray repository to <repositories>
section (and also add pluginRepository
to <pluginRepositories>
, if you're willing to get kotlin-maven-plugin
from there):
<repository> <snapshots> <enabled>false</enabled> </snapshots> <id>dl</id> <name>bintray</name> <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</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.9-rc</version> </dependency>
And make sure that you use the right Kotlin version:
<properties> <kotlin.version>1.1.0-rc-69</kotlin.version> </properties>
Add the bintray repository (and also add it to buildScript
section, if you're willing to get kotlin-gradle-plugin
from there):
repositories { maven { url "http://dl.bintray.com/kotlin/kotlin-eap-1.1" } }
Add dependencies (you can also add other modules that you need):
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.9-rc'
And make sure that you use the right Kotlin version:
buildscript { ext.kotlin_version = '1.1.0-rc-69' }