-
hi,i found a MaxSockets property of NetMQContext class is not correct,
``` c#
public int MaxSockets
{
get { m_ctx.CheckDisposed(); return m_ctx.MaxSockets; }
set { m_ctx.CheckDisposed(); m_ct…
-
Should we add an AUTHORS file, as is done in many zeromq projects?
- https://github.com/zeromq/malamute/blob/master/AUTHORS
- https://github.com/zeromq/zmqpp/blob/develop/AUTHORS
- https://github.com/…
-
When trying to run the unit-tests on the source-code (the most recent version as of today, 2015-3-17) - all tests pass except for those within PgmTests. All of the tests within PgmTests seem to hang i…
-
GitHub has a nice feature where if you include a file called `CONTRIBUTING.md` then users see a message when opening issues/pull requests:
![image](https://cloud.githubusercontent.com/assets/350947/6…
-
We use REP-REQ socket pattern over TCP transport. Upon client disconnection, the port stays in TIME_WAIT tcp state, waiting for its lifetime timeout to occur. This is a problem when there are high vol…
-
`NetMQSocket.IgnoreErrors` is marked obsolete, but still used in `Poller.cs`.
Is the intention in making it obsolete that it's not possible to ignore errors on a socket?
If so, should we remove this…
-
As you know the NetMQ project is very active project, however currently we are only 3 active maintainers and we need more to merge pull requests faster.
So if you have good understanding in NetMQ/Zer…
-
The extension methods for receiving from sockets are not very friendly when starting out with NetMQ. There are several ways to achieve the same thing (`SendReiveOptions.DontWait` vs `bool dontWait`) a…
-
Question: Is there no help-file of any kind for this library? !!
I mean like a .chm or other Windows Help File format, that lists every class, method and property?
If there is not - I can help creat…
-
The example provided in http://netmq.readthedocs.org/en/latest/xpub-xsub/ uses Proxy to bridge XPub and XSub sockets of the Intermediary. When using Poller and implementing the logic by hand, the Poll…