background_processes.md: Link UX

This commit is contained in:
Karol Lewandowski 2025-01-14 12:26:51 +01:00
parent 429e9698b5
commit 509197b845

View File

@ -79,7 +79,7 @@ new Task.Backgroundable(project, "Synchronizing data", true) {
> .runProcessWithProgressAsynchronously( > .runProcessWithProgressAsynchronously(
> backgroundableTask, EmptyProgressIndicator()) > backgroundableTask, EmptyProgressIndicator())
> ``` > ```
> Note that hiding progress from users should be avoided as it may break the UX. > Note that hiding progress from users should be avoided as it may break the [UX](plugin_user_experience.md).
`ProgressManager` also allows running `Runnable` and `Computable` instances not wrapped within `Task` with several `run*()` methods. `ProgressManager` also allows running `Runnable` and `Computable` instances not wrapped within `Task` with several `run*()` methods.
Example: Example: