nzmqt
nzmqt copied to clipboard
nzmqt - A lightweight C++ Qt binding for ZeroMQ
QMutex::Recursive was deprecated in 15.4 and dropped from Qt 6.
Does this library support 0mq pattern router-dealer?
Due to an explicit cast "issue" in some CPPZMQ versions (https://github.com/zeromq/cppzmq/pull/81/commits/bd288a55c156ed099eef186834b305162c0e72bb) (i.e. it happend on Debian Stretch for me), nzmqt cannot compile using newer compilers. **Fix:** Fix affects file: _/include/nzmqt/impl.hpp_...
At https://github.com/jonnydee/nzmqt/blob/master/include/nzmqt/impl.hpp#L87 I get an error in compiling using G++ 9.2.0. Instead of QByteArray(data(), int(size())) the following seems to do the job: QByteArray((char *) data(), int(size())) ```c++ ./nzmqt/impl.hpp: In member...
i downloaded the repository and installed zmq using brew install zmq i still can not compile the static library is there any other step that i should do? zmg.h file...
nzmqt/include/nzmqt/impl.hpp:458: error: no matching function for call to 'QTimer::singleShot(int, nzmqt::PollingZMQContext*, void (nzmqt::PollingZMQContext::*)())' QTimer::singleShot(0, this, &PollingZMQContext::run); ^
Would the nzmqt team like to create a 4.x branch, or push 3.x from master to a branch. We are currently (we have a successful build) implementing the code using...
I'm following the examples to create a console application that uses the pub-sub pattern using Qt on ubunutu. I'm using the include method of working with the code. When I...
Hi, Is there any extra steps to get the header only include to work? I try building my project as instructed with the nzmqt headers, but it seems that the...
Hello, if REQ-REP pattern is used how should one monitor for server timeout?