On Wed, Jun 30, 2010 at 4:23 PM, Derek Developer <[email protected]> wrote: > > Is there any way to break the blocking of zmq_recv() without firing up a > client and sending a message like "QUIT SERVER"?
You can destroy the context object from another thread, that will cause all blocking calls to return. You will need to either shutdown then, or create a new context and new sockets. -Pieter _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
