Hi Chris, > I think Robin meant that the subscriber wants to subscribe to > messages of topic "animals.mammals" and not receiving message of > topic "animals.mammals.cats" > > In C, we'd call setsockopt with "animals.mammals\0"
Nope, you should do it this way: zmq_setsockopt (s, ZMQ_SUBSCRIBE, "animals.mammals", 15); Note that the data passed to the socket option do not contain the terminal zero. Any message starting with "animals.mammals" will match the subscription. > What's the Java way of doing that? s.setsockopt (ZMQ.SUBSCRIBE, "animals.mammals"); HTH Martin _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
