On Wed, Oct 30, 2013 at 1:34 AM, Andrew Hume <[email protected]> wrote:
> i have a central server fed by a client. > the client needs to push a large amount of data to teh server but only exit > when the server is done processing it. > both client and server are running on the same linux box. Sounds like you're making things over complex. I'd just use one socket pair, DEALER at client to ROUTER at server. Client sends all its data to server and signals final message. Server processes data in sequence and when it's done, signals status OK/Error back to client. -Pieter _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
