# Execution Contexts
Tracking execution progress, checking for cancellations, and switching between different execution contexts.
The IntelliJ Platform provides APIs that allow tracking the progress of background processes and canceling 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:
- [](#suspending-context-coroutines) — available since 2024.1
- [](#blocking-context)
- [](#progress-indicator) — obsolete since 2024.1
Currently, the Progress Indicator context is the most widely used approach in the IntelliJ Platform.
As the platform's execution model moves towards [coroutines](launching_coroutines.md), this approach can be considered obsolete.
Starting with 2024.1, it is recommended to execute new code in the [suspending context](#suspending-context-coroutines).
The following sections explain the contexts and provide information about process cancellation, progress tracking, and switching between different contexts.
## Suspending Context (Coroutines)
Code [executed in Kotlin coroutines](launching_coroutines.md) is executed in a suspending context.
Since 2024.1, this context is recommended for executing background tasks to maximize CPU utilization.
> Note that executing code in a suspending context is possible only with [Kotlin](using_kotlin.md).
>
{style="warning"}
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](#switching-between-contexts).
> Inspection Plugin DevKit | Code | Forbidden in suspend context method usage reports calling blocking code from suspending context.
## Blocking Context
Executing tasks in a blocking context means executing them on a thread without access to the [coroutine context](#suspending-context-coroutines) (basically, in non-suspending functions) and not under [a progress indicator](#progress-indicator).
Such tasks can still be canceled, but they can't report progress.
Plugins should not execute new code in the blocking context.
Always prefer executing tasks in the [suspending context](#suspending-context-coroutines) or under the [progress indicator](#progress-indicator) if a plugin cannot use Kotlin.
> Functions which schedule execution via [`Application.executeOnPooledThread()`](%gh-ic%/platform/core-api/src/com/intellij/openapi/application/Application.java)
> and similar methods, and which rely on [`ProgressManager.checkCanceled()`](%gh-ic%/platform/core-api/src/com/intellij/openapi/progress/ProgressManager.java)
> should be annotated with [`@RequiresBlockingContext`](%gh-ic%/platform/core-api/src/com/intellij/util/concurrency/annotations/RequiresBlockingContext.kt)
> to inform clients about the required switch to a blocking context.
>
> Inspection Plugin DevKit | Code | Calling method should be annotated with @RequiresBlockingContext reports missing annotations.
## Progress Indicator
Code executed via the Progress API
([`ProgressManager`](%gh-ic%/platform/core-api/src/com/intellij/openapi/progress/ProgressManager.java),
[`ProgressIndicator`](%gh-ic%/platform/core-api/src/com/intellij/openapi/progress/ProgressIndicator.java), etc.)
is executed in a progress indicator context.
See the [](background_processes.md#progress-api) section for details.
> Executing code under the progress indicator is obsolete since 2024.1.
> It is advised to use Kotlin coroutines in new code.
>
> Please note that obsolete status does not mean deprecation.
> Executing code using the Progress API is still allowed, but coroutines are recommended as a more performant solution.
>
{style="tip" title="Obsolete approach since 2024.1"}
## Execution Contexts APIs
### Cancellation Check
The following table presents APIs to use for checking whether a task was canceled in different execution contexts.
### Progress Reporting
The following table presents the possibilities and APIs to use for reporting progress in different execution contexts.
Suspending |
Any report*Progress() function must be used inside withBackgroundProgress() , withModalProgress() , or runWithModalProgressBlocking() from tasks.kt.
Otherwise, if there is no reporter in the context, using report*Progress() will have no effect.
Example:
withBackgroundProgress(...) { // or other
// ...
reportProgress { reporter -> // or another report*Progress
// do tasks and report progress
}
// ...
}
|
Blocking |
unavailable
|
Progress Indicator |
ProgressIndicator 's or ProgressManager 's methods
See Background Processes: Tracking Progress for details.
|
### Switching Between Contexts
The following table presents the possibilities and APIs to use for switching between different execution contexts.
|
To Suspending |
To Blocking |
To Progress Indicator |
From Suspending |
- |
blockingContext() 1 |
unavailable 3 |
From Blocking |
runBlockingCancellable() 2 |
- |
unavailable 4 |
From Progress Indicator |
runBlockingCancellable() 2 |
unavailable |
- |
1 blockingContext() enables ProgressManager.checkCanceled() , forwards modality state, etc. It has an opposite behavior to runBlockingCancellable() .
2 runBlockingCancellable() has an opposite behavior to blockingContext()
3 coroutineToIndicator() is an internal API to aid platform migration
4 blockingContextToIndicator() is an internal API to aid platform migration
|
It is only possible to:
- switch from the blocking context or progress indicator to the suspending context
- switch from the suspending context to the blocking context
The lack of an API for switching from suspending and blocking contexts to progress indicator is intentional.
Cancellable and trackable tasks should be run in coroutines as the progress indicator is obsolete since 2024.1.