16
When should a service be synchronous versus asynchronous?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would use synchronous calls when the user needs an immediate result and the path is short enough to stay responsive. I would use asynchronous processing when the task is slow, variable, or can be completed later. The best answer shows that the choice depends on latency, reliability, and user experience.