Coding Studio

Learn & Grow together.

Browsing:

Tag: #mobile programming

What is Kotlin Coroutine & its Basics

Kotlin coroutine is an instance of suspendable computation. It is similar to Thread. But it’s not the same. It is lighter weight than Thread, as it consumes less memory. It is useful to execute CPU-intensive tasks in Android applications. Here Read more…