Need help with asynchronous operation - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:13:12Zhttp://stackoverflow.com/feeds/question/769040http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation1Need help with asynchronous operationJohn2009-04-20T16:28:50Z2009-11-26T13:24:09Z
<p>I'm relatively new to asynchronous and service-oriented programming and want to do the following:</p>
<ol>
<li>Fire off a stored procedure in a database that could run for minutes or even hours. </li>
<li>Return a code to the caller of a job id that the client can use to track the progress of the job.</li>
</ol>
<p>This seems like a simple task, but being new to asynchronous coding, I'm concerned about unknown pitfalls. Is there a well defined pattern for this type of functionality? If so, does it have a name and what is a good resource?</p>
http://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation/769066#769066-1Answer by Aaron Daniels for Need help with asynchronous operationAaron Daniels2009-04-20T16:34:06Z2009-04-20T16:43:23Z<p>Check out the <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">observer pattern</a>.</p>
<p>From wikipedia:</p>
<blockquote>
<p>The observer pattern (a subset of the
asynchronous publish/subscribe
pattern) is a software design pattern
in which an object, called the
subject, maintains a list of its
dependents, called observers, and
notifies them automatically of any
state changes, usually by calling one
of their methods. It is mainly used to
implement distributed event handling
systems.</p>
</blockquote>
<p>Another good MSDN article on the observer pattern can be found <a href="http://msdn.microsoft.com/en-us/library/ms954621.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation/980935#9809350Answer by JohnIdol for Need help with asynchronous operationJohnIdol2009-06-11T13:03:17Z2009-06-11T13:03:17Z<p>When running asynchronous calls is good custom to setup some kind of callback to handle the result of the procedure (I am not talking strictly about stored procedures, could be any asynchronously invoked call) - which could be a result set or simply a success/failure indicator.</p>
<p>If you make considerate use of asynchronous calls setting up some sort of safety net to catch the outcome and react in an appropriate way I can't see any pitfall with this approach (such approach is in fact often necessary in many cases).</p>
<p>For a practical example (.NET) of an asynchrounous call to a stored procedure (which seems to be relevant to your specific case) have a look <a href="http://nayyeri.net/blog/Asynchronous-command-execution-in-NET-2-0/" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation/980953#9809530Answer by Visage for Need help with asynchronous operationVisage2009-06-11T13:07:16Z2009-06-11T13:07:16Z<p>If you want to do it asynchronously you have 2 main ways:</p>
<p>Register a callback function with whatever resource you are using that it will call when complete.</p>
<p>or</p>
<p>If your resource doesnt have such functionality, fire up a thread that tracks all requests and polls for request completion at regular intervals. Every time a task completes, notify the owner via a callback.</p>
http://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation/1803647#18036470Answer by Rashmi Pandit for Need help with asynchronous operationRashmi Pandit2009-11-26T13:24:09Z2009-11-26T13:24:09Z<p>In your case, you need to use the callback approach. This will set off the sql SP execution asynchronously and your code will be notified when the execution completes. In addition you can use the AsynResult object to poll if the operation has been completed or not.</p>
<p>Refer to the link <a href="http://msdn.microsoft.com/en-us/library/7szdt0kc.aspx" rel="nofollow">SqlCommand..::.BeginExecuteReader Method (AsyncCallback, Object)</a> for callback method.</p>
<p>If you need to poll too, you can poll on the IAsyncResult:</p>
<pre><code>// Make the asynchronous call
IAsyncResult result = command.BeginExecuteReader(callback, command);
// Poll to see if complete
while (!result.IsCompleted)
{
// Do more work here if the call isn't complete
Thread.Sleep(100);
}
</code></pre>
<p>Refer to my answer on <a href="http://stackoverflow.com/questions/1047662/what-is-asynccallback/1047677#1047677">What is AsyncCallback?</a> for all different types of asynchronous techniques explained in simple manner.</p>