Nick Coghlan added the comment:

Future are explicitly about kicking off a concurrent call and waiting for a 
reply. They're great for master/slave and client/server models, but not 
particularly good for actors and other forms of peer-to-peer message passing.

For the latter, explicit pools and message queues are still the way to go, and 
that's why I think a concurrent.pool module may still be useful as a more 
obvious entry point for the thread pool implementation.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17140>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to