IntelliJ Platform Plugin SDK Help

Execution Contexts

The IntelliJ Platform provides APIs that allow to track the progress of background processes and cancel their execution, when they are canceled by a user, or they become obsolete due to some changes in the data model.

Background processes can be executed in three contexts:

Currently, the Progress Indicator context is the most widely used approach in the IntelliJ Platform. As the platform's execution model moves towards coroutines, this approach can be considered obsolete. Starting with 2024.1, it is recommended to execute new code in the suspending context.

Once the client code switches to a suspending or a blocking context, it should not switch back to a progress indicator context.

The following sections explain the contexts and provide information about process cancellation, progress tracking, and switching between different contexts.

Suspending Context

Code executed in Kotlin coroutines is executed in a suspending context. Since 2024.1, this context is recommended for executing background tasks to maximize CPU utilization.

In a suspending context, methods such as ProgressManager.checkCanceled() or ModalityState.defaultModalityState() won't have any effect. Therefore, if their behavior is required, switch to a blocking context.

Cancellation Check

Progress Reporting

Any report*Progress() function should be used inside with*Progress() or runWithModalProgressBlocking(). Otherwise, if there is no reporter in the context, using report*Progress() will have no effect.

Switching to Other Contexts

Blocking Context

Executing tasks in a blocking context means executing them on a thread without access to the coroutine context (basically, in non-suspending functions) and not under a progress indicator. Usually, plugins should not execute new code in the blocking context. Prefer the suspending context or fall back to progress indicator if a plugin cannot use Kotlin.

Cancellation Check

Progress Reporting

Progress reporting is not available in the blocking context.

Switching to Other Contexts

Progress Indicator

Code executed via the Progress API (ProgressManager, ProgressIndicator, etc.) is executed in a progress indicator context. See the running background processes section for details.

Cancellation Check

Progress Reporting

Switching to Other Contexts

Last modified: 10 April 2024