当前位置: 首页>>代码示例>>Python>>正文


Python zmq.UNSUBSCRIBE属性代码示例

本文整理汇总了Python中zmq.UNSUBSCRIBE属性的典型用法代码示例。如果您正苦于以下问题:Python zmq.UNSUBSCRIBE属性的具体用法?Python zmq.UNSUBSCRIBE怎么用?Python zmq.UNSUBSCRIBE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在zmq的用法示例。


在下文中一共展示了zmq.UNSUBSCRIBE属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: set_string

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def set_string(self, option, optval, encoding='utf-8'):
        """Set socket options with a unicode object.
        
        This is simply a wrapper for setsockopt to protect from encoding ambiguity.

        See the 0MQ documentation for details on specific options.
        
        Parameters
        ----------
        option : int
            The name of the option to set. Can be any of: SUBSCRIBE, 
            UNSUBSCRIBE, IDENTITY
        optval : unicode string (unicode on py2, str on py3)
            The value of the option to set.
        encoding : str
            The encoding to be used, default is utf8
        """
        if not isinstance(optval, unicode):
            raise TypeError("unicode strings only")
        return self.set(option, optval.encode(encoding)) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:22,代码来源:socket.py

示例2: __setattr__

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def __setattr__(self, key, value):
        """Override to allow setting zmq.[UN]SUBSCRIBE even though we have a subscribe method"""
        _key = key.lower()
        if _key in ('subscribe', 'unsubscribe'):
            
            if isinstance(value, unicode):
                value = value.encode('utf8')
            if _key == 'subscribe':
                self.set(zmq.SUBSCRIBE, value)
            else:
                self.set(zmq.UNSUBSCRIBE, value)
            return
        super(Socket, self).__setattr__(key, value) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:15,代码来源:socket.py

示例3: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, topic):
        """Unsubscribe from a topic

        Only for SUB sockets.

        .. versionadded:: 15.3
        """
        if isinstance(topic, unicode):
            topic = topic.encode('utf8')
        self.set(zmq.UNSUBSCRIBE, topic) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:12,代码来源:socket.py

示例4: test_sigabrt_issue

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def test_sigabrt_issue(self, random=Random(42)):
            import gevent
            pub = self.context.socket(zmq.PUB)
            pub.setsockopt(zmq.LINGER, 0)
            self.sockets.append(pub)
            topics = [str(random.random())[2:] for x in range(10000)]
            def workload(sub):
                subscribed = set()
                # Many subscriptions, for example above 5000, are
                # raising up reproducibility of the crash.
                for x in range(10000):
                    if not subscribed or random.random() < 0.9:
                        topic = random.choice(topics)
                        subscribed.add(topic)
                        sub.set(zmq.SUBSCRIBE, topic)
                    else:
                        topic = random.choice(list(subscribed))
                        subscribed.remove(topic)
                        sub.set(zmq.UNSUBSCRIBE, topic)
                    # Sleeping with gevent for 0 seconds is necessary
                    # to reproduce the crash.
                    gevent.sleep(0)
            for x in range(3):
                sub, addr = self.create_sub()
                pub.connect(addr)
                workload(sub)
                # Only SUB socket closes.  If PUB socket disconnects,
                # the crash won't be reproduced.
                sub.close() 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:31,代码来源:test_pubsub.py

示例5: set

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def set(self, opt, val):
        """set socket option"""
        if opt in TIMEOS:
            warnings.warn("TIMEO socket options have no effect in zmq.green", UserWarning)
        result = super(_Socket, self).set(opt, val)
        if opt in (zmq.SUBSCRIBE, zmq.UNSUBSCRIBE):
            self.__state_changed()
        return result 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:10,代码来源:core.py

示例6: _DWX_MTX_UNSUBSCRIBE_MARKETDATA_

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def _DWX_MTX_UNSUBSCRIBE_MARKETDATA_(self, _symbol):
        
        self._SUB_SOCKET.setsockopt_string(zmq.UNSUBSCRIBE, _symbol)
        print("\n**\n[KERNEL] Unsubscribing from " + _symbol + "\n**\n") 
开发者ID:darwinex,项目名称:dwx-zeromq-connector,代码行数:6,代码来源:DWX_ZeroMQ_Connector_v2_0_1_RC8.py

示例7: subscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def subscribe(self):
        """Update our SUB socket's subscriptions."""
        self.stream.setsockopt(zmq.UNSUBSCRIBE, '')
        if '' in self.topics:
            self.log.debug("Subscribing to: everything")
            self.stream.setsockopt(zmq.SUBSCRIBE, '')
        else:
            for topic in self.topics:
                self.log.debug("Subscribing to: %r"%(topic))
                self.stream.setsockopt(zmq.SUBSCRIBE, topic) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:12,代码来源:logwatcher.py

示例8: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, topic_filter):
        """
        Unsubscribe the client from a particular filter. Only for
        SUBSCRIBE clients.

        :param topic_filter: Filter to be removed.
        :type topic_filter: ``str``
        """
        if self.cfg.message_pattern == zmq.SUB:
            self._socket.setsockopt(zmq.UNSUBSCRIBE, topic_filter) 
开发者ID:Morgan-Stanley,项目名称:testplan,代码行数:12,代码来源:client.py

示例9: unsubscribe_all

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe_all(self):
        """ Subscription to all events. """
        self.socket.setsockopt(zmq.UNSUBSCRIBE, '') 
开发者ID:julien6387,项目名称:supvisors,代码行数:5,代码来源:supvisorszmq.py

示例10: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, code):
        """ Remove subscription to the event named code. """
        self.socket.setsockopt(zmq.UNSUBSCRIBE, code.encode('utf-8'))

    # reception part 
开发者ID:julien6387,项目名称:supvisors,代码行数:7,代码来源:supvisorszmq.py

示例11: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, alias: str, topic: Union[bytes, str]) -> None:
        """
        Unsubscribe a SUB/SYNC_SUB socket given by its alias from a given
        specific topic, and delete its entry from the handlers dictionary.

        If instead of a single topic, a tuple or a list of topics is passed,
        the agent will unsubscribe from all the supplied topics.
        """
        if isinstance(topic, (tuple, list)):
            for t in topic:
                self.unsubscribe(alias, t)
            return

        topic = topic_to_bytes(topic)

        if isinstance(self._address[alias], AgentAddress):
            self._socket[alias].setsockopt(zmq.UNSUBSCRIBE, topic)
            del self._handler[self._socket[alias]][topic]
        elif isinstance(self._address[alias], AgentChannel):
            channel = self._address[alias]
            sub_address = channel.receiver
            treated_topic = channel.twin_uuid + topic
            self._socket[sub_address].setsockopt(
                zmq.UNSUBSCRIBE, treated_topic
            )
            del self._handler[self._socket[sub_address]][treated_topic]
        else:
            raise NotImplementedError(
                'Unsupported address type %s!' % self._address[alias]
            ) 
开发者ID:opensistemas-hub,项目名称:osbrain,代码行数:32,代码来源:agent.py

示例12: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, streamname, node_id=b''):
        ''' Unsubscribe from a stream. '''
        self.stream_in.setsockopt(zmq.UNSUBSCRIBE, streamname + node_id) 
开发者ID:TUDelft-CNS-ATM,项目名称:bluesky,代码行数:5,代码来源:client.py

示例13: remove_topic

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def remove_topic(self, topic):
        self.sub_socket.setsockopt(zmq.UNSUBSCRIBE, pickle.dumps(topic))
        self.topic.remove(topic) 
开发者ID:hadrianl,项目名称:huobi,代码行数:5,代码来源:handler.py

示例14: unsubscribe

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def unsubscribe(self, topic):
        if topic != '':
            topic_ = self.pack(topic)
            self.__subSocket.setsockopt(zmq.UNSUBSCRIBE, topic_)
        else:
            self.__subSocket.unsubscribe('') 
开发者ID:hadrianl,项目名称:huobi,代码行数:8,代码来源:rpc.py

示例15: console_messages

# 需要导入模块: import zmq [as 别名]
# 或者: from zmq import UNSUBSCRIBE [as 别名]
def console_messages(ws):
    """Receive console messages as they happen

    ZMQ message format:
     Console messages:
      console cluster_name {"job_id":"current_job_id", "msg":"message from console"}
     Control messages:
      Keep alive:
      The cluster is starting a job:
       console cluster_name {"job_id":"current_job_id", "ctl":"START"}
      The cluster finished a job:
       console cluster_name {"job_id":"current_job_id", "ctl":"DONE"}
      The cluster is not working on anything:
       console cluster_name {"ctl":"IDLE"}

    When forwarding messages to the websocket client, the "console cluster_name" 
    portion is dropped and just the JSON is sent.

    Websocket sends keepalive messages periodically:
     {"ctl":"KEEPALIVE"}

    """
    cluster_name = ws.receive()
    console_socket = console_subscribe(cluster_name)
    try:
        while True:
            try:
                data = console_socket.recv_string()
                data = data.lstrip("console {cluster_name} ".format(cluster_name=cluster_name))
                ws.send(data)
            except zmq.error.Again:
                # If we timeout from zmq, send a keep alive request to the
                # websocket client:
                ws.send('{"ctl":"KEEPALIVE"}')
                # The client websocket will send keepalive back:
                ws.receive()
            except zmq.error.ZMQError, e:

                if e.errno == zmq.POLLERR:
                    log.error(e)
                    # Interrupted zmq socket code, reinitialize:
                    # I get this when I resize my terminal.. WTF?
                    console_socket = setup_zmq()
    finally:
        log.error("Unsubscribing from zmq socket")
        console_socket.setsockopt_string(zmq.UNSUBSCRIBE, u'') 
开发者ID:datastax,项目名称:cstar_perf,代码行数:48,代码来源:controllers.py


注:本文中的zmq.UNSUBSCRIBE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。