BroadcastChannel factory function
6 files changed
tree: f16f8e8a2e03aaaa3d2600e1926f29f40e1071a7
  1. benchmarks/
  2. knit/
  3. kotlinx-coroutines-core/
  4. kotlinx-coroutines-jdk8/
  5. kotlinx-coroutines-nio/
  6. license/
  7. reactive/
  8. site/
  9. ui/
  10. .gitignore
  11. CHANGES.md
  12. coroutines-guide.md
  13. pom.xml
  14. README.md
README.md

kotlinx.coroutines Download

Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1 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 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.

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

And make sure that you use the right Kotlin version:

<properties>
    <kotlin.version>1.1.2</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.16'

And make sure that you use the right Kotlin version:

buildscript {
    ext.kotlin_version = '1.1.2'
}