We need to add pyzmq support. Good starting points are as follows:
We can do a pretty quick port from the gevent code, since the structure is almost the same. The only difference is that guv uses trampoline() instead of the lower level, direct constructs that gevent is using; if anything, this makes it easier.
We need to add pyzmq support. Good starting points are as follows:
import zmq.green as zmq), see https://zeromq.github.io/pyzmq/eventloop.htmlWe can do a pretty quick port from the gevent code, since the structure is almost the same. The only difference is that guv uses
trampoline()instead of the lower level, direct constructs that gevent is using; if anything, this makes it easier.