From 0992cfb707bbdf34997c736adca50decb2d66736 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Wed, 19 Feb 2025 18:20:24 +0100 Subject: [PATCH] background_processes.md: Delete incorrect information about cancellation in tasks run without progress indicator --- .../architectural_overview/threading/background_processes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/basics/architectural_overview/threading/background_processes.md b/topics/basics/architectural_overview/threading/background_processes.md index ae6b19b89..f46b06dc3 100644 --- a/topics/basics/architectural_overview/threading/background_processes.md +++ b/topics/basics/architectural_overview/threading/background_processes.md @@ -7,7 +7,7 @@ Background process is a time-consuming computation usually executed on a background thread. The IntelliJ Platform executes background processes widely and provides two main ways to run them by plugins: - [Progress API](#progress-api) that allows for cancelling tasks and tracking their progress -- [`Application.executeOnPooledThread()`](%gh-ic%/platform/core-api/src/com/intellij/openapi/application/Application.java) methods for running simple background tasks that don't need cancellation or progress tracking +- [`Application.executeOnPooledThread()`](%gh-ic%/platform/core-api/src/com/intellij/openapi/application/Application.java) methods for running background tasks that don't need progress tracking ## Progress API