On Tue, Jan 29, 2013 at 11:22 AM, Martin Hua <[email protected]> wrote: > for my bachelor thesis I have implemented a client-server communication with > the PUSH-PULL Pattern. The server sends a message to all clients, that are > interested in this message.
If you want to send to "interested clients", you should probably be using PUB-SUB and not PUSH-PULL... > My question is: > If one of these clients crashes, then there is a possibility under zeromq > that the server knows about it? None, unless you add this yourself: PUSH/PULL and PUB/SUB are one-way flows. To send acknowledgements to the server, use ROUTER/DEALER and manage subscriptions and acknowledgements yourself. -Pieter _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
