Benoît Labaere

Results 42 comments of Benoît Labaere

There is no chat room for the moment, because I feel the number of people involved does not require it. If I had to choose I would probably pick gitter.im...

The zero timeout in the event loop thread is there to minimize latency. And that means one core is busy spinning all the time. One way to fix it is...

The zero timeout in the event loop thread is there to minimize latency. And that means one core is busy spinning all the time. One way to fix it is...

I remember having started with `PollOpt::level` and at some point switching to `edge` but I can't remember which feature I was implementing. I'm pretty sure it is related to the...

If you need something that actually works, it really is a better idea to use nanomsg.rs. It is a rust wrapper around the original C library so one can be...

This error is returned by ```recv``` when the REQ socket is not expecting a reply, ie when there is no matching successful ```send```. You can get this error when trying...

I've been scratching my head about this for quite some time now (see the TODO.MD file) and I think this really needs to be done, for a lot of reasons....

PR#88 introduces the stable_1.0 branch and to celebrate this, it gets rid of link-config (and its weekly build break)

In fact, this should be the default behavior of the Reader trait `read` function. Since it is passed a mutable slice, there must be a way to tell nanomsg to...

This is now done as read function of Reader trait is passing the raw pointer of the slice parameter to nanomsg.