MVC4 + async/await + return response before action completes

前端 未结 3 2117
忘掉有多难
忘掉有多难 2020-12-24 14:55

In my MVC4 app I need to add a controller for uploading and processing large files. Immediately after the file is uploaded I need to start async processing of that file and

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-24 15:23

    Your LongRunning method is synchronously sleeping 10 seconds. Change it so the sleep happens in the task instead.

提交回复
热议问题