ZmqException if $(ZMQ) reports an error.
$(ZMQREF zmq_msg_setsockopt()) with ZMQ_SUBSCRIBE.
// Create a subscriber that accepts all messages that start with // the prefixes "foo" or "bar". auto sck = Socket(SocketType.sub); sck.subscribe("foo"); sck.subscribe("bar");
Establishes a message filter.