Three times as longer stress test (x30 multiplier)
1 file changed
tree: f10a0ba9fdcd4c514048d48a5168034d8f6a2ce6
  1. knit/
  2. kotlinx-coroutines-core/
  3. kotlinx-coroutines-jdk8/
  4. kotlinx-coroutines-nio/
  5. license/
  6. reactive/
  7. site/
  8. ui/
  9. .gitignore
  10. CHANGES.md
  11. coroutines-guide.md
  12. pom.xml
  13. README.md
README.md

kotlinx.coroutines Download

Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0 release.

Modules

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:

Documentation

Using in your projects

Note that these libraries are experimental and are subject to change.

The libraries are available via JCenter. These libraries require kotlin compiler version to be at least 1.1.0 and require kotlin runtime of the same version as a dependency.

Maven

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.12</version>
</dependency>

And make sure that you use the right Kotlin version:

<properties>
    <kotlin.version>1.1.0</kotlin.version>
</properties>

Gradle

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.12'

And make sure that you use the right Kotlin version:

buildscript {
    ext.kotlin_version = '1.1.0'
}