So, given a socket setup (in ruby)

require 'ffi-rzmq'
ctx = ZMQ::Context.new 1
sock = ctx.socket(ZMQ::XREQ)
sock.bind('tcp://127.0.0.1:8000')
sock.send_string('',ZMQ::SNDMORE | ZMQ::NOBLOCK)
sock.send_string('oh hai', ZMQ::NOBLOCK)

I get 'Resource temporarily unavailable' errors ONLY if there is no xrep
socket listening on the other end. Is this intentional? This seems odd.

-- 
Andrew Cholakian
http://www.andrewvc.com
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to