Skip to content

Commit c3a5687

Browse files
authored
Merge pull request #9668 from jdiehl/patch-92
Added warning about background sync
2 parents fcdd64f + 2f60629 commit c3a5687

File tree

1 file changed

+8
-0
lines changed
  • content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/client-activities

1 file changed

+8
-0
lines changed

content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/client-activities/synchronize.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,20 @@ The **Action** section of the properties pane shows the action associated with t
8383

8484
## Limitations {#limitations}
8585

86+
### Parallel Synchronization
87+
8688
Running multiple synchronization processes at the same time is not supported, regardless of the synchronization mode.
8789

8890
If you try to trigger another synchronization process while the synchronization is in progress, the following error message will be shown: "Performing simultaneous synchronizations is not supported. Please try again after the current synchronization is completed."
8991

9092
Such an error can be handled in the nanoflow from which the synchronization attempt was triggered using [error handlers](/refguide/error-handling-in-nanoflows/#errorhandlers-nano).
9193

94+
### Background Synchronization
95+
96+
Avoid running synchronization processes in the background, such as scheduling periodic refreshes at fixed intervals. This approach can negatively impact application performance and may result in unclear or misleading error messages for users.
97+
98+
Instead, trigger synchronization explicitly when data updates are required. Ensure that users are informed of the synchronization status by displaying progress indicators or relevant feedback during the process.
99+
92100
## Read More
93101

94102
* [Activities](/refguide/activities/)

0 commit comments

Comments
 (0)