https://github.com/tmc/gevent-zeromq
pyzeromq gevent compat. lib
https://github.com/tmc/gevent-zeromq
Last synced: about 1 year ago
JSON representation
pyzeromq gevent compat. lib
- Host: GitHub
- URL: https://github.com/tmc/gevent-zeromq
- Owner: tmc
- License: bsd-3-clause
- Created: 2011-01-18T16:23:19.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-10-27T00:53:41.000Z (over 1 year ago)
- Last Synced: 2025-04-09T06:08:24.864Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 58.6 KB
- Stars: 282
- Watchers: 13
- Forks: 47
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
COMPLETE!
===========
This work has been merged upstream into `pyzmq `_
----------------------------------------------------------------------------------
=============
gevent-zeromq
=============
This library wraps pyzmq to make it compatible with gevent. ØMQ socket
operations that would normally block the current thread will only block the
current greenlet instead.
Requirements
------------
* pyzmq==2.2.0
* gevent (compatible with 1.0 pre-releases as well)
Usage
-----
Instead of importing zmq directly, do so in the following manner:
..
from gevent_zeromq import zmq
Any calls that would have blocked the current thread will now only block the
current green thread.
About
-----
This compatibility is accomplished by ensuring the nonblocking flag is set
before any blocking operation and the ØMQ file descriptor is polled internally
to trigger needed events.
Will build with cython if available, decreasing overhead.
License
-------
See LICENSE (New BSD)