richardmillen / zguide-examples

Implementations of the 0MQ examples in the guide.
http://zguide.zeromq.org/page:all
4 stars 0 forks source link

ROUTER Broker and DEALER Workers in C++ #4

Closed richardmillen closed 7 years ago

richardmillen commented 7 years ago

Implement the ROUTER Broker and DEALER Workers example.

Anywhere you can use REQ, you can use DEALER. There are two specific differences: The REQ socket always sends an empty delimiter frame before any data frames; the DEALER does not. The REQ socket will send only one message before it receives a reply; the DEALER is fully asynchronous.