You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For nn_send, we could start by just exposing a non-blocking version of write. I quite don't see how to integrate nn_allocmsg correctly for the moment.
For nn_recv, there are four cases and two of them are already available in the reader API. We need to add the non-blocking versions of read and read_to_end.
The text was updated successfully, but these errors were encountered:
Now only remains to be implemented nn_send with the nn_msg zero-copy option. I'd like a new function to expose the fact that the buffer must not be used after being sent. It's the kind of constraint that rust should be able to express quite nicely.
For
nn_send
, we could start by just exposing a non-blocking version ofwrite
. I quite don't see how to integratenn_allocmsg
correctly for the moment.For
nn_recv
, there are four cases and two of them are already available in the reader API. We need to add the non-blocking versions ofread
andread_to_end
.The text was updated successfully, but these errors were encountered: