Search
You can now search through our
archive
!
Please specify a keyword
-
Issue #308
This post is a summary of how Chris Banes refactored an app which uses RxJava pretty heavily, to one which uses Kotlin coroutines too. Specifically, he talks about switching out Single/Maybe/Completable sources to coroutines.
-
Issue #308
Kotlin coroutines is a way of doing things asynchronously in a sequential manner. Creating coroutines is cheap vs creating threads. Veeresh Charantimath shows how they work.
-
Issue #304
In this blog series, Manuel Vicente Vivo compares Kotlin Coroutines and RxJava on different topics since they are trying to solve a common problem in Android development: Asynchronous Programming.
-
Issue #303
Android GDE Dmytro Danylyk presents on Kotlin coroutines.
-
Issue #303
Andrea Bresolin was curious to evaluate Kotlin coroutines and RxJava in terms of performance, so I’ve decided to create some simple tests.
-
Issue #293
Asynchronous programming is hard, and Kotlin coroutines implementation tries to make it a little easier. Here, Erik Hellman shows a simple example how to use it in Android development.
-
Issue #290
Jake Wharton's Retrofit 2 CallAdapter.Factory for Kotlin coroutine's Deferred.
-
Issue #285
This is the third blog post about using Kotlin Coroutines and Android Architecture Components in one simple weather app.
-
Issue #282
This is Marek Langiewicz's second blog post about using Kotlin Coroutines and Android Architecture Components in one simple weather app.
-
Issue #279
Kotlin introduced a stable (yet still experimental) feature that promises to get rid of the complexity of writing asynchronous code. Adrian Bukros guides you through basic examples of using coroutines, and examines what happens under the hood.
-
Issue #278
Marek Langiewicz creates a clean-code app with Kotlin coroutines and Android Architecture Components
-
Issue #274
Dávid Karnok, a maintainer of RxJava, takes a look at the viability of writing RxJava with Kotlin Coroutines.
-
Issue #262
Antonio Leiva's in-depth look at Kotlin coroutines.
-
Issue #249
Usually we just hear praise about all things Kotlin. But with coroutines some doubts appear. In this post Matt Dupree explains in depth why he thinkgs that observables are a better tool than coroutines.
-
Issue #246
This is small library that provides Kotlin Coroutines suspending extension Call.await() for Retrofit 2
-