The example way to send messages using Cap'n Proto needs a file descriptor to write to:
::capnp::writeMessageToFd(fd, message);
But in ZMQ the message needs to be passed to a ZMQ function:
zmq_send(requester, "Hello", 5, 0);
http://zguide.zeromq.org/page:all
How can this incompatibility be resolved?