Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Coolroutines - non-blocking Kotlin

Coolroutines - non-blocking Kotlin

Introduction to writing asynchronous, non-blocking code with kotlin coroutines

https://github.com/olbpetersson/coolroutines

Ola Petersson

November 06, 2018
Tweet

More Decks by Ola Petersson

Other Decks in Programming

Transcript

  1. @SinceKotlin("1.1") public interface Continuation<in T> { public val context: CoroutineContext

    public fun resume(value: T) public fun resumeWithException(e: Throwable) }