博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZeroMQ的笔迹
阅读量:6229 次
发布时间:2019-06-21

本文共 521 字,大约阅读时间需要 1 分钟。

hot3.png

SUB端口可以连接多个PUB端口

context = zmq.Context()socket = context.socket(zmq.SUB)print("Collecting updates from weather server...")socket.connect("tcp://localhost:5666")socket.connect("tcp://localhost:5667")#socket.close() # 可以根据需要关闭连接

 context is the container for all sockets in a single process, and acts as the transport for inproc sockets, which are the fastest way to connect threads in one process.

Call  once at the start of a process, and  once at the end.

问题:

  如果写错了对端地址,根本不知道。

转载于:https://my.oschina.net/cppblog/blog/403236

你可能感兴趣的文章
什么是Solr
查看>>
oracle 12cR1&12cR2核心高实用性新特性
查看>>
pandas Series的sort_values()方法
查看>>
SQL SERVER CHAR ( integer_expression )各版本返回值差异的案例
查看>>
pytest文档7-pytest-html生成html报告
查看>>
微信小程序弹窗组件
查看>>
安装使用ionic3
查看>>
结构体初始化
查看>>
java中this的N种使用方法
查看>>
Windows IIS安装php
查看>>
mingw 设置python 设置git环境变量
查看>>
linux 系统下如何进行用户之间的切换
查看>>
设计一个算法移除字符串中的重复字符,并写出测试用例。
查看>>
goole机器学习视频链接【学习笔记】
查看>>
查看django版本的方法
查看>>
kafka channle的应用案例
查看>>
WPF 圆角textbox
查看>>
熊彼特的创新理论:非连续性模型
查看>>
Windows10内置ubuntu子系统安装后中文环境设置
查看>>
Spring Security教程(八):用户认证流程源码详解
查看>>