Re: Concurrent Python

2005-02-14 Thread Dominic Fox
For an alternative approach (based on using generators forming a dataflow component system) you might find our project interesting - the core concurrency stuff is packaged up separately with API docs (and trivial example) here: http://kamaelia.sourceforge.net/Docs/Axon.html Would it be

Re: Concurrent Python

2005-02-12 Thread Do Re Mi chel La Si Do
Hi ! You can found few ideas here : http://candygram.sourceforge.net @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Concurrent Python

2005-02-12 Thread Michael Sparks
On Fri, 11 Feb 2005, Dominic Fox wrote: ... http://www.codepoetics.com/code/concurrent.py Comments and constructive criticism welcome. For an alternative approach (based on using generators forming a dataflow component system) you might find our project interesting - the core concurrency stuff

Concurrent Python

2005-02-11 Thread Dominic Fox
I've created a few classes to support some concurrent programming concepts in Python: AsyncResult represents the state of a process currently running in a separate thread. MultiEvent allows listeners to wait for any one of a list of events to be signalled. MultiQueue allows listeners to wait for