How to use the pyzmq.helloword.src.core.connectors.Connector.__init__ function in pyzmq

To help you get started, we’ve selected a few pyzmq examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zeromq / cookbook / pyzmq / helloword / src / core / connectors.py View on Github external
def __init__(self,  name, end_point, context=None):
        Connector.__init__(self,  name, end_point, context)
        self._sockt = self._context.socket(zmq.REQ)
        self._sockt.setsockopt(zmq.IDENTITY, self._name)
        self.log = logging.getLogger(__name__)
github zeromq / cookbook / pyzmq / helloword / src / core / connectors.py View on Github external
def __init__(self,  name, end_point, context=None):
        Connector.__init__(self,  name, end_point, context)

pyzmq

Python bindings for 0MQ

BSD-3-Clause
Latest version published 5 days ago

Package Health Score

97 / 100
Full package analysis

Similar packages