I came across the following code that uses the ContinueWith() to wait for the result.
public async Task<User> GetUser()
{
return await _serviceRepo.GetUserAsync()
.ContinueWith(task =>
{
return task.Result;
});
}
Does the ContinueWith()
block the calling thread until task returns from the GetUserAsync()
call?
Since the task.Result
is inside the ContinueWith() which is scheduled, is anything being blocked while waiting for the antecedent task
?
I've seen this type of code in couple of other places, is this considered a best practice for the async/await pattern? I would expect the GetUserAsync()
call return the result than using a ContinueWith()
to wait for it.
No, the thread wouldn't be blocked, as this is an
async
operation. Just be aware that the given code awaits not the task, but the continuation, which may mislead you during debugging.No, the task is already finished, and the current thread wouldn't be blocked. However, the exception will be raised in case the task finished unsuccessfully.
No, this code can be rewritten in form:
However, if there is some logic in continuation, like this:
you can do this: