1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
:mod:`eventlet.green.zmq` -- ØMQ support
========================================
:mod:`pyzmq <zmq>` [1]_ is a python binding to the C++ ØMQ [2]_ library written in Cython [3]_.
:mod:`eventlet.green.zmq` is greenthread aware version of `pyzmq`.
.. automodule:: eventlet.green.zmq
:show-inheritance:
.. currentmodule:: eventlet.green.zmq
.. autoclass:: Context
:show-inheritance:
.. automethod:: socket
.. autoclass:: Socket
:show-inheritance:
.. automethod:: recv
.. automethod:: send
.. module:: zmq
.. [1] http://github.com/zeromq/pyzmq
.. [2] http://www.zeromq.com
.. [3] http://www.cython.org
|