> This is doing a round-trip, right?
In the java program, I have a DEALER socket named "tagReader", and I use it
as below.
for(String addr : addrArray)
tagReader.send(addr.getBytes(charset));
for(int j=0; j<length; ++j)
Double.parseDouble(new String(tagReader.recv(), charset));
Thus, I think it's not doing a round-trip on the java side, but what about
on the LabVIEW side?
For each message sent by tagReader, the LabVIEW program retrieves "addr"
from the ROUTER socket, passes addr to a method named "Read Tag", converts
the returned value to a string, and sends the string back to DEALER.
It looks like a round trip on the LabVIEW side.
Am I getting it wrong?
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev