richardmillen / zguide-examples

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

The Asynchronous Client/Server Pattern in C++ #7

Closed richardmillen closed 7 years ago

richardmillen commented 7 years ago

Implement the The Asynchronous Client/Server Pattern example.

In the ROUTER to DEALER example, we saw a 1-to-N use case where one server talks asynchronously to multiple workers. We can turn this upside down to get a very useful N-to-1 architecture where various clients talk to a single server, and do this asynchronously.