Hi every guys:
       I got a problem which ZMQ will lost some messages with PUSH/PULL ZMQ 
socket.
       The scene like this:
       A: PUSH socket, bind address "tcp://*.1209"
       B: PULL socket, connect to "tcp://localhost:1209"
       
       Run the command "telnet localhost 1209" while A sending message to B.


       The result is B will miss  messages even if I set the option of 
ZMQ_IMMEDIATE to 1 like this:
           int immediate = 1;
   zmq_setsockopt(pSock, ZMQ_IMMEDIATE, &immediate, sizeof(immediate));


      Is it right in this scene or is it should be?
_______________________________________________
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to