Async command pattern - exception handling. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:03:51Z http://stackoverflow.com/feeds/question/297678 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling 0 Async command pattern - exception handling. wizlb 2008-11-18T02:25:17Z 2008-11-18T05:37:42Z <p>I am implementing an asynchronous command pattern for the "client" class in a client/server application. I have done some socket coding in the past and I like the new Async pattern that they used in the Socket / SocketAsyncEventArgs classes.</p> <p>My async method looks like this: <code>public bool ExecuteAsync(Command cmd);</code> It returns true if the execution is pending and false if it completed synchronously. <strong>My question is: Should I always call the callback (cmd.OnCompleted), even in the event of an exception? Or should I throw exceptions right from ExecuteAsync?</strong></p> <p>Here are some more details if you need them. This is similar to using SocketAsyncEventArgs, but instead of SocketAsyncEventArgs my class is called SomeCmd.</p> <pre><code>SomeCmd cmd = new SomeCmd(23, 14, 10, "hike!"); cmd.OnCompleted += this.SomeCmd_OnCompleted; this.ConnectionToServer.ExecuteAsync(cmd); </code></pre> <p>As with the Socket class, if you need to coordinate with your callback method (SomeCmd_OnCompleted in this case), you can use the return value of ExecuteAsync to know if the operation is pending (true) or if the operation completed synchronously.</p> <pre><code>SomeCmd cmd = new SomeCmd(23, 14, 10, "hike!"); cmd.OnCompleted += this.SomeCmd_OnCompleted; if( this.ConnectionToServer.ExecuteAsync(cmd) ) { Monitor.Wait( this.WillBePulsedBy_SomeCmd_OnCompleted ); } </code></pre> <p>Here is a greatly simplified version of my base classes, but you can see how it works:</p> <pre><code>class Connection { public bool ExecuteAsync(Command cmd) { /// CONSIDER: If you don't catch every exception here /// then every caller of this method must have 2 sets of /// exception handling: /// One in the handler of Command.OnCompleted and one where ExecuteAsync /// is called. try { /// Some possible exceptions here: /// 1) remote is disposed. happens when the other side disconnects (WCF). /// 2) I do something wrong in TrackCommand (a bug that I want to fix!) this.TrackCommand(cmd); remote.ServerExecuteAsync( cmd.GetRequest() ); return true; } catch(Exception ex) { /// Command completing synchronously. cmd.Completed(ex, true); return false; } } /// &lt;summary&gt;This is what gets called by some magic when the server returns a response.&lt;/summary&gt; internal CommandExecuteReturn(CommandResponse response) { Command cmd = this.GetTrackedCommand(response.RequestId); /// Command completing asynchronously. cmd.Completed(response, false); } private IServer remote; } abstract class Command: EventArgs { internal void Completed(Exception ex, bool synchronously) { this.Exception = ex; this.CompletedSynchronously = synchronously; if( this.OnCompleted != null ) { this.OnCompleted(this); } } internal void Completed(CommandResponse response, bool synchronously) { this.Response = response; this.Completed(response.ExceptionFromServer, synchronously) } public bool CompletedSynchronously{ get; private set; } public event EventHandler&lt;Command&gt; OnCompleted; public Exception Exception{ get; private set; } internal protected abstract CommandRequest GetRequest(); } </code></pre> http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling/297706#297706 0 Answer by CStick for Async command pattern - exception handling. CStick 2008-11-18T02:41:14Z 2008-11-18T02:41:14Z <p>I would throw a custom exception and not call the completed callback. After all, the command was not completed if an exception occurred.</p> http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling/297725#297725 2 Answer by Jason Jackson for Async command pattern - exception handling. Jason Jackson 2008-11-18T02:51:06Z 2008-11-18T02:51:06Z <p>I would <strong>not</strong> throw an exception in the ExecuteAsync, and instead set the exception condition for the callback. This will create a consistent way of programming against the asynchronous logic and cut down on repetitive code. The client can call this class and expect one way to handle exceptions. This will provide less buggy, less brittle code.</p> http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling/297739#297739 1 Answer by Steven A. Lowe for Async command pattern - exception handling. Steven A. Lowe 2008-11-18T03:01:15Z 2008-11-18T03:01:15Z <p>throwing an exception from the dispatch point may or may not be useful</p> <p>calling the callback passing an exception argument requires the completion callback to do 2 distinct things</p> <p>a second callback for exception reporting might make sense instead</p> http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling/297858#297858 0 Answer by dp for Async command pattern - exception handling. dp 2008-11-18T04:29:01Z 2008-11-18T04:29:01Z <p>Handling exceptions in one spot is a lot easier. I'd use the following distinction: for exceptions that should be handled, throw them in the callback. It makes it simpler to use the class. For exceptions that should not be caught (e.g., ArgumentException) throw in the ExecuteAsync. We want unhandled exceptions to blow up ASAP.</p> http://stackoverflow.com/questions/297678/async-command-pattern-exception-handling/297937#297937 0 Answer by Nicholas Piasecki for Async command pattern - exception handling. Nicholas Piasecki 2008-11-18T05:37:42Z 2008-11-18T05:37:42Z <p>One general pattern for asynchronous operations in .NET (at least for the <code>BackgroundWorker</code> and the <code>BeginInvoke()/EndInvoke()</code> method pairs is to have a result object that separates the callback from the actual return value or any exceptions that occurred. It's the responsibility of the callback to handle the exception.</p> <p>Some C#-like pseudocode:</p> <pre> <code> private delegate int CommandDelegate(string number); private void ExecuteCommandAsync() { CommandDelegate del = new CommandDelegate(BeginExecuteCommand); del.BeginInvoke("four", new AsyncCallback(EndExecuteCommand), null); } private int BeginExecuteCommand(string number) { if (number == "five") { return 5; } else { throw new InvalidOperationException("I only understand the number five!"); } } private void EndExecuteCommand(IAsyncResult result) { CommandDelegate del; int retVal; del = (CommandDelegate)((AsyncResult)result).AsyncDelegate; try { // Here's where we get the return value retVal = del.EndInvoke(result); } catch (InvalidOperationException e) { // See, we had EndExecuteCommand called, but the exception // from the Begin method got tossed here } } </code> </pre> <p>So if you call <code>ExecuteCommandAsync()</code>, it returns immediately. The <code>BeginExecuteCommand()</code> is launched in a separate thread. If it tosses an exception, that exception won't get thrown until you call <code>EndInvoke()</code> on the <code>IAsyncResult</code> (which you can cast to <code>AsyncResult</code>, which is documented but you could pass it in the state if the cast makes you uncomfortable. This way, the exception handling code is "naturally placed" around where you would be interacting with the return value of the method.</p> <p>For more information, checkout more information on <a href="http://msdn.microsoft.com/en-us/library/ms228969.aspx" rel="nofollow">the IAsyncResult pattern on MSDN</a>.</p> <p>Hope this helps.</p>