A collection of async functionality and additions from the future.
7914ac69de
Change-Id: I29947e0911ceb268f802b657fc200c35f6d9172b |
||
---|---|---|
doc/source | ||
futurist | ||
.coveragerc | ||
.gitignore | ||
.gitreview | ||
.mailmap | ||
.testr.conf | ||
babel.cfg | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
MANIFEST.in | ||
openstack-common.conf | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini |
Futurist
Code from the future, delivered to you in the now.
- Free software: Apache license
- Documentation: http://docs.openstack.org/developer/futurist
- Source: http://git.openstack.org/cgit/openstack/futurist
- Bugs: http://bugs.launchpad.net/futurist
Features
- A
futurist.GreenThreadPoolExecutor
using eventlet green thread pools. It provides a standard executor API/interface and it also gathers execution statistics. - A
futurist.ProcessPoolExecutor
derivative that gathers execution statistics. - A
futurist.SynchronousExecutor
that doesn't run concurrently. It has the same executor API/interface and it also gathers execution statistics. - A
futurist.ThreadPoolExecutor
derivative that gathers execution statistics.