Concept Flow - Why async processing matters
Request received
Start processing
Is task long-running?
No→Process synchronously
Yes
Start async task
Return response immediately
Async task completes in background
Update state or notify client
This flow shows how async processing lets the server start a long task and immediately respond, improving responsiveness.