When should I use asynchronous vs. synchronous calls in Quickwork’s callable journeys?
0
-
- Asynchronous calls: Use asynchronous calls when speed is crucial, and you do not need an immediate response from the callable journey. This type of call allows both the parent and child journeys to run independently, making it suitable for tasks that can be processed in parallel without waiting for completion.
- Synchronous calls: Use synchronous calls when the outcome of the callable journey is essential for the parent journey to continue. In this case, the parent journey will wait for the child journey to complete before proceeding, ensuring that dependent tasks are executed in sequence.
0
Please sign in to leave a comment.
Comments
1 comment