On 10 May 2013 10:39, Ian Upright <[email protected]> wrote: > Are you sure about that? Wouldn't it work something like this: > Suspend the Fiber, perhaps push the request to another IPC thread group > that > is farming out the requests. Then when a reply comes back in, to send it > back over IPC, and then that part would resume that Fiber which was > associated with the request/reply. >
That would require a special version of zmq_poll that effectively implements a fiber scheduler: wake up the correct fiber based on pending socket data. Both are technically correct, native fiber support would obviously be a preferable solution. -- Steve-o
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
