Idiomatic asynchronous design - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:29:20Zhttp://stackoverflow.com/feeds/question/378564http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378564/idiomatic-asynchronous-design2Idiomatic asynchronous designMatt Green2008-12-18T17:27:35Z2008-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#3786133Answer by grepsedawk for Idiomatic asynchronous designgrepsedawk2008-12-18T17:43:31Z2008-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#3788361Answer by Charlie Martin for Idiomatic asynchronous designCharlie Martin2008-12-18T19:02:46Z2008-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#3795251Answer by S.Lott for Idiomatic asynchronous designS.Lott2008-12-18T22:22:09Z2008-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>