Idiomatic asynchronous design - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:29:20Z http://stackoverflow.com/feeds/question/378564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378564/idiomatic-asynchronous-design 2 Idiomatic asynchronous design Matt Green 2008-12-18T17:27:35Z 2008-12-18T22:22:09Z <p>Are there any sorts of useful idioms I can make use of when writing an API that is asynchronous? I would like to standardize on something as I seem to be using a few different styles throughout. It seems hard to make asynchronous code simple; I suppose this is because asynchronous operations are anything but.</p> <p>At the most basic level, the user of the API must be able to:</p> <ol> <li>Have data pushed to them as it becomes available <li>Check the status of the asynchronous operation <li>Be notified of errors that occur <li>Wait for completion (converting the asynchronous operation to a synchronous one) </ol> <p>My classes support several asynchronous operations. I have been putting some of the status/error callbacks in the class around it, but the class is becoming gunked up with a lot of incidental fields, as well as getting too large. I am curious if anyone has used an asynchronous API they found to be well-organized. I have looked at .NET's Begin/EndAsyncOperation + AsyncResult design, as well as some classes in Java (e.g. Future).</p> <p>This is being written in Python, so it remains very flexible. There is a caveat: some of these asynchronous operations are being marshaled to a remote machine and executed over there. Thus, not every operation necessarily executes in a separate thread.</p> http://stackoverflow.com/questions/378564/idiomatic-asynchronous-design/378613#378613 3 Answer by grepsedawk for Idiomatic asynchronous design grepsedawk 2008-12-18T17:43:31Z 2008-12-18T17:48:39Z <p>You may want to look at <a href="http://twistedmatrix.com/trac/" rel="nofollow">Python Twisted</a>. It is a nice <a href="http://en.wikipedia.org/wiki/Reactor_pattern" rel="nofollow">Reactor</a> based API that supports <a href="http://twistedmatrix.com/projects/core/documentation/howto/async.html" rel="nofollow">asynchronous</a> operations. <a href="http://www.cs.uu.nl/docs/vakken/no/proactor.pdf" rel="nofollow">Proactor</a> is the common term for asynchronous completion handler like frameworks.</p> http://stackoverflow.com/questions/378564/idiomatic-asynchronous-design/378836#378836 1 Answer by Charlie Martin for Idiomatic asynchronous design Charlie Martin 2008-12-18T19:02:46Z 2008-12-18T19:02:46Z <p>Also have a look at the Asynchronous Completion Token and ActiveObject patterns.</p> http://stackoverflow.com/questions/378564/idiomatic-asynchronous-design/379525#379525 1 Answer by S.Lott for Idiomatic asynchronous design S.Lott 2008-12-18T22:22:09Z 2008-12-18T22:22:09Z <p>This sounds like the <strong>Observer</strong> design pattern. <a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">link</a>.</p> <p>Your client object is an <strong>Observer</strong>. Your API belongs to an object that's <strong>Observable</strong>.</p> <p>Each client (in Java parlance) implements the <strong>Observer</strong> interface. In Python, it's a matter of each client offering a number of methods that your observable will use.</p> <pre><code>class SomeClientInterface( object ): def update( self, source, data ): # handle data being pushed from Observable source def error( self, from, status ): # handle error in Observable source </code></pre> <p>Your Observable object has a way for Observers to register and do other things.</p> <pre><code>class Observable( object ): def __init__( self ): self.clients= set() def register( self, observer ): self.clients.add( observer ) def whenSomethingHappens( self ): # doing work if itAllWentToHell: for c in self.clients: c.error( self, "some status object" ) else: for c in self.clients: c.update( self, the pushed data ) def waitFor( self ): # observers are waiting... return theData def status( self ): return self.currentState </code></pre>