Skip to content

EasyKotlin/kotlinx.coroutines

This branch is 2820 commits behind Kotlin/kotlinx.coroutines:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

48fd628 · May 29, 2017
Apr 5, 2017
Apr 7, 2017
May 10, 2017
Apr 5, 2017
Apr 5, 2017
Feb 7, 2017
May 4, 2017
Apr 5, 2017
May 4, 2017
Jun 22, 2016
May 4, 2017
May 4, 2017
May 29, 2017
May 4, 2017

Repository files navigation

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.15</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.15'

And make sure that you use the right Kotlin version:

buildscript {
    ext.kotlin_version = '1.1.2'
}

About

Libraries built upon Kotlin coroutines

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 98.7%
  • Other 1.3%