Asynchronous Programming In Kotlin

Updated 29 April 2022

Save

Before going to Asynchronous Programming In Kotlin let’s have a look at synchronous and asynchronous programming.

Synchronous programming:

In synchronous operation/tasks are performed in a sequence.
One task has to wait for others to complete their execution and get a result.

Asynchronous programming:

The asynchronous programming technique allow the program to run while another task is executing.
In asynchronous multiple tasks executes parallelly.
It doesn’t execute in sequential order and doesn’t wait for another task to get completed.

Asynchronous programming in Android/kotlin

In android, there is a single thread called “main thread” which manages everything.
The main thread is responsible for communication with android components and user interaction, and other tasks.
If we perform the long-running task on the main thread which may take 5 sec it will freeze the application.
Hence, the application gets crashed with the error message ANR( application not responding).To make the android app responsive it is essential to avoid performing long-running on the main thread.

Loading of components or operations related to DB or network are examples.
These types of operations need to be executed on another worker thread rather than the main thread.

Multithreading simply means performing several tasks parallelly without boking another task by running multiple threads.

Asynchronous Techniques in Kotlin:

There are many approaches like:

Threading

Callbacks

Futures, promises, and others

Coroutines

Reactive Extensions

Coroutines in Kotlin.

Coroutines are lightweight threads.
Creating coroutines doesn’t allocate new threads, instead, they use predefine threads pools, that’s why coroutines are light weighted.
You can suspend and resume coroutine in mid-execution.

Suspend Functions in Kotlin

Suspend function is a function that can be paused, started, and resume.
We define suspend function using Suspend modifier.
They can only be called from a coroutine or another suspend function.
If you call directly then it will give an error.
Let’s consider an example.
In the below example, we are calling the delay function directly without coroutine scope which will give the below

Error Image

So, now we will call the delay function from the global coroutine scope like:

Coroutine builders

These are the functions that help to create a coroutine.
They can be called from normal functions because they are not suspended functions.


Below are the coroutine builders in Kotlin.
runBlocking : this blocks the current thread and waits for the coroutine to finish execution.
launch: start a coroutine in the background and keep working.
async
: perform an asynchronous operation and return a deferred object. We can call await on the deferred value in order to wait and get the result.

Coroutine Scope


Define a scope/lifecycle for coroutines.
The lifecycle of a coroutine can be application-wide or bound to a component like Activity.
Coroutine builder is an extension of couroutineScope and inherits its context to propagate all its elements.

Dispatchers

A dispatcher normally runs coroutines on threads. Every dispatcher is tied to a thread pool and manages to run coroutines on the threads.

There are majorly 4 types of Dispatchers.

  1. Main Dispatcher
  2. IO Dispatcher
  3. Default Dispatcher

Dispatcher.Main: It will start the coroutine in the main thread.
It is mostly used when needed to perform UI-related operations.

Like:

main dispatcher log

Default Dispatcher: It starts the coroutine in the default thread.
It is used by all coroutine builders like launch, async, etc if no dispatcher specifies in the scope.

default dispatcher log

IO Dispatcher: It is used to perform operations like networking, reading or writing the database, downloading files, etc.

Io dispatcher log

Conclusion


In this blog, we have learned about Synchronous and asynchronous programming and Coroutine in Kotlin.

To learn more about Coroutines, you can also refer to this link ->  Guide

Thanks for Reading.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home