ZmqException if $(ZMQ) reports an error.
$(ZMQREF zmq_msg_close()) followed by $(ZMQREF zmq_msg_init_data()).
auto msg = Frame(256); assert (msg.size == 256); auto buf = new ubyte[123]; msg.rebuild(buf); assert(msg.size == buf.length); assert(msg.data.ptr == buf.ptr);
Reinitializes the Frame object from a supplied buffer.
This function will first call $(FREF Frame.close) to release the resources associated with the message frame, and then it will initialize it anew, exactly as if it were constructed with $(LINK2 #Frame.opCall_data,Frame(data)).