码迷,mamicode.com
首页 > 其他好文 > 详细

ZeroMQ的笔迹

时间:2015-04-18 01:16:03      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:


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 zmq_ctx_new() once at the start of a process, and zmq_ctx_destroy() once at the end.


问题:

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


ZeroMQ的笔迹

标签:

原文地址:http://my.oschina.net/cppblog/blog/403236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!