Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

await Task.WhenAll(task1, task2); task1.Result; task2.Result #65

Closed
worming004 opened this issue Aug 4, 2020 · 10 comments
Closed

await Task.WhenAll(task1, task2); task1.Result; task2.Result #65

worming004 opened this issue Aug 4, 2020 · 10 comments

Comments

@worming004
Copy link

Hello,

Very great list of best practices. It guides me and coworkers about multiple async await usage.

But there is 1 question where people disagree.

Regarding the following code

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = task1.Result; 
var result2 = task2.Result;

We agree that starting the 2 first tasks before waiting any result is good. But we disagree how to get the result.

By following best practices to get the value using await on each tasks is imo safer. But I do not have much arguments about it. I prefer the following version. It's more readable. But I miss some knowledge about performance and safety.

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
var result1 = await task1; 
var result2 = await task2;

What is your mind ? What are the best version regarding safety, performance, readability ?

@jjavierdguezas
Copy link

jjavierdguezas commented Aug 4, 2020

I've always had this doubt
Regardless of the use of Result, the first of your codes could execute faster since Task.WhenAll could execute both Tasks in parallel.
I wonder if in this scenario the first code will be considered good practice 🤔
Maybe a modified version of the second one

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = await task1; 
var result2 = await task2;

It would be as fast as first due to Task.WhenAll and it is also avoiding Result (awaiting for the completed tasks should be immediate, but a little weird)

@jjavierdguezas
Copy link

So @davidfowl, would would recommend the first version?

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = task1.Result; 
var result2 = task2.Result;

@alefranz
Copy link

alefranz commented Aug 4, 2020

I think another aspect to consider in picking one solution over the other is how do you want to handle exceptions, in particular on how you want to handle the scenario when only some tasks are failing.

@worming004
Copy link
Author

Based on feedbacks, conclusion is that first version

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = task1.Result; 
var result2 = task2.Result;

have quite more performance than second version.

But second version

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
var result1 = await task1; 
var result2 = await task2;

is more idiomatic.

Thanks for precision, it's enough to restart debate with my coworkers.

@worming004
Copy link
Author

I've got enough feedback for me. Ticket can be close IMO.
But I see more concern raised by other people.

I let other people close this one, as some questions are pending. If there is no more activities several days, I'll close myself.

Thanks

@andleer
Copy link

andleer commented Aug 4, 2020

A third version was introduced by @jjavierdguezas mid conversation and it isn't completely clear to me who is talking about which...

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = await task1; 
var result2 = await task2;

Does the await Task.WhenAll(task1, task2); improve or harm performance? @davidfowl uses this in his comparison. What if that line is omitted? Does it simplify the state machine denoted by @davidfowl ?

@worming004
Copy link
Author

Wihout any update, I close this issue.
Thanks everyone

@davidfowl
Copy link
Owner

@andleer that's even more awaits 😄 so it's not as efficient.

@andleer
Copy link

andleer commented Aug 7, 2020

@davidfowl agree that it is even more awaits but you used that scenario in your 2nd sharplap.io / codegen example. I realize it was most likely unintentional but I wonder if the inclusion impacts your comment earlier in this thread. Either way, I will take idiomatic over minimal performance differences. Thanks for all the contributions here!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants