Cellular IO - A self-contained and self-managed IO loop
Cellular IO is an interface for IO loop style programming that bundles the IOloop
lifecycle into the inner cell of a standard python data interface. If the cell
is used like a generator then the ioloop is managed inside the generator during
calls to __next__
. If callbacks are used then the cell will block the current
execution context until the sum of IO routines are complete.
An IOCell can consist of multiple levels of cascading IO routines. A first tier may do requests that add requests of a second tier to the workqueue. The cell coordinator keeps track of the different io tiers to ensure they are scheduled according to the strategy chosen by the user, be it latency, bandwidth, or just FIFO.
python3 ./setup.py build
python3 ./setup.py install
- Python 3.5.3+