python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Variable initialised in Constructor is null, but initialised in class method works
I am currently trying to do the following in my Application:
#include "zmqworker.h"
#include <QDebug>
ZMQWorker::ZMQWorker(QObject *parent)
: QObject{parent}
{
zmq::context_t ...
myfoxit
Votes: 0
Answers: 1
Receiving message on ZMQ socket from unauthenticated sender
I have a ZMQ pub/sub architecture where I have one sub and many pubs. One of those pubs is external and therefore I encrypted the incoming messages using ZMQ CURVE. The rest, however, are all internal...

AlexAbrahams
Votes: 0
Answers: 1
Redirect ZeroMQ PUB socket to STDIO to a local TCP socket using C#
This is probably going to sound very stupid so please bear with me.
My goal is to be able to use the Docker API attach functionality like a TCP socket, so I can use it to achieve something like an SSH...
tacos_tacos_tacos
Votes: 0
Answers: 0
ZMQCPP using socket_t as class variable
I'm creating a class to handle ZMQCPP that I can use within several different projects. I want to have the context_t and socket_t be a class variable so I do not have to pass them around to different ...
Chip Brommer
Votes: 0
Answers: 1