I've read about the task-based asynchronous pattern and it sounds great.
Now, I have a WCF service that needs to call other WCF services. Those services return differnet result.
How can async call those services with the new pattern and await all to complete?
Thanks
Mirko
|
| ||||
|
feedback
|
|
EDIT: If you've just got BeginXXX and EndXXX methods, see this question for how to turn those into Basically, you need You can use Note that this will wait for all the tasks to finish, even if there's an error early. As the tasks have different result types, you'll need to set them up to start with, wait for them all to finish, then grab the results:
Alternatively, just fire off the tasks to start with, and await each one separately. Note that tasks in TAP are "hot" - they start as soon as you create them, not when you await them. So this will work too - but this time if
I've blogged about this, first about waiting for multiple tasks in general and then about exceptions when waiting for multiple tasks. | |||||
feedback
|
|
If you want to know about the plans of the WCF team to support the async/await model, take a look at the following blog post: Amadeo | |||
|
feedback
|
|
See Async CTP - How can I use async/await to call a wcf service? | |||
|
feedback
|