WCF REST Not Processing Asynchronously?

It looks to me, from your example, like you're doing all the work before the "Begin" call finishes; that's a common mistake I found while learning the async pattern.

To make things asynchronous you generally compose it together with other things that are asynchronous. If you are only doing synchronous things with your asynchronous methods then it doesn't make any sense to use the async pattern. For example, if all your code does is put work on the thread pool you haven't accomplished anything because you've handed back the thread to the thread pool by moving your code asynchronous but stolen it right back from ASP.NET by launching your work there.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions