Concept Flow - Long-running operations (async responses)
Client sends request
Server receives request
Server starts long task
Server immediately responds with 202 Accepted
Client polls or waits for status URL
Server processes task in background
Client receives final result when ready
The client sends a request for a long task. The server starts it and immediately replies with a 202 status and a status URL. The client checks this URL until the task finishes and gets the final result.