Asynchronous Messaging
Fredrik Lundh
fredrik at pythonware.com
Wed Sep 26 07:53:44 EDT 2007
wink wrote:
> This provides two benefits, a sender is never directly effected by the
> receiver and since the receiver handles only one message at a time
> it generally never has to use mutexes or semaphores. This allows for
> the programmer to use multiple threads without having to contend with the
> associated issues mutexes have in the area of deadly embraces or race
> conditions.
import Queue # ?
</F>
More information about the Python-list
mailing list