ZeroMQ Subscribers not receiving message from Publisher over an inproc: transport class
问题 I am fairly new to pyzmq . I am trying to understand inproc: transport class and have created this sample example to play with. It looks a Publisher instance is publishing messages but Subscriber instances are not receiving any. In case I move Subscriber instances into a separate process and change inproc: to a tcp: transport class, the example works. Here is the code: import threading import time import zmq context = zmq.Context.instance() address = 'inproc://test' class Publisher(threading