IntelliJ Platform Plugin SDK Help

Kotlin Coroutines

The IntelliJ Platform is a multithreading environment that executes many asynchronous and non-blocking tasks to avoid UI freezes. These tasks are usually executed in background threads, which is a standard approach in the JVM world.

Since version 1.1, Kotlin has introduced coroutines as a lightweight and easy to implement alternative to threads. The IntelliJ Platform started adapting coroutines in its APIs and internal code, and since 2024.1 it is recommended to use the coroutines approach over threads.

Coroutines Advantages

The reason for coroutines being lightweight is the fact that they are not bound to OS native threads, as opposed to the JVM threads. It enables much less memory consumption and cheaper context switching, which makes the platform and plugins more performant. For example, it's straightforward to run 100.000 coroutines on a standard computer, which is not possible with threads as it would cause OutOfMemoryError.

Besides performance, there are more advantages of using coroutines:

  • Coroutines greatly simplify the way of writing non-blocking code. What was usually implemented with hard to understand, implement and maintain callbacks, with coroutines looks like regular sequential/imperative code.

  • Coroutines allow for implementing structured concurrency (coroutines can spawn child coroutines), which allows for easily managing the lifecycle of concurrent tasks and error handling. For example, cancelling a parent coroutine automatically cancels all child coroutines.

  • It is trivial to switch execution of the code parts between UI and background threads.

Java Interoperability

Coroutines provide very limited Java interoperability, and coroutine-based APIs can’t be used to the full extent from Java code.

Kotlin Coroutines are new to the IntelliJ Platform and are not yet widely adopted in public APIs. In the future, the number of coroutine-based APIs will grow and using only Java may not be enough to implement a fully functional plugin. It will be required to use Kotlin, at least partially, e.g., to implement coroutine-based Extension Points.

Learning Resources

Before going to the next coroutine-related sections, it is highly recommended to go through the following resources. It will help understand coroutines and become fluent with available APIs:

Last modified: 19 March 2024