Python zeromq — Multiple Publishers To a Single Subscriber?

后端 未结 3 1378
北荒
北荒 2021-02-15 17:38

I\'d like to write a python script (call it parent) that does the following:

(1) defines a multi-dimensional numpy

3条回答
  •  孤城傲影
    2021-02-15 18:22

    In ZeroMQ there can only be one publisher per port. The only (ugly) workaround is to start each child PUB socket on a different port and have the parent listen on all those ports.

    but the pipeline pattern describe on 0MQ, user guide is a much better way to do this.

提交回复
热议问题