-2

How to configuration parameters that zeromq can Send a block message,

When a process sends a message to another process,

if another process does not receive the message, the process which send message will block on the send function does not return

j0k
  • 22,600
  • 28
  • 79
  • 90
timger
  • 944
  • 2
  • 13
  • 31
  • https://learning-0mq-with-pyzmq.readthedocs.org/en/latest/pyzmq/patterns/client_server.html – David Brabant Jan 17 '13 at 10:35
  • 1
    I would suggest you read something about the actual technology before you ask here on Stack Overflow... http://zguide.zeromq.org/ – tchap Jan 17 '13 at 11:56

1 Answers1

2

This is the simplest REQ-REP socket pattern; check the ZeroMQ Guide "Hello World" example.

Pieter Hintjens
  • 6,599
  • 1
  • 24
  • 29
  • it is not so simple,if you have one rep server and has many req client ,the rep sever send repsonse message , and then recv a req request from another client,you can't know if the first req client if recv the rep message – timger Jan 18 '13 at 03:20
  • @python Read's the guide, you've skipped far ahead and missed some important details. – David Feb 21 '13 at 22:36