
nzmqt
Source (link to git-repo or to original if based on someone elses unmodified work):
nzmqt is a re-implementation of the approach taken by the zeromqt library. The idea is to integrate ZeroMQ into the Qt event loop, mapping ZeroMQ message events onto Qt signals. The original implementation also provides a Qt-like API which allows to represent messages as QByteArray instances. While I took this idea and the original implementation as a source of information, I have done a completely new implementation. Not only in order to get rid of some short comings, but also because I wanted to be sure I can use the code in my projects without problems, because until now zeromqt's author hasn't officially released his work under a certain (open source) license. Consequently, nzmqt is released to the public under the simplified BSD license. So you can use the code in your projects without any fear.
Introduced enumeration types for several ZMQ constants for type-safety.
Added a new polling based implementation that works for all ZMQ communication protocols.
Dropped support for REQ-REP protocol for old 'QSocketNotifier' based implementation.
Added some more convenience methods to 'ZMQSocket' class.
Old and new socket implementations now emit a signal with a received message as parameter.
Ratings & Comments
0 Comments