Re: [zeromq-dev] FOSDEM 2018 - ZeroMQ gathering/hackaton?

2018-01-24 Thread Benjamin Henrion
On Wed, Jan 24, 2018 at 9:54 PM, Luca Boccassi wrote: > On Sun, 2017-08-27 at 18:20 +0100, Luca Boccassi wrote: >> Hello, >> >> FOSDEM 2018 dates have been announced, it will be on Saturday 3rd and >> Sunday 4th of February. [1] >> >> Would people be interested in

[zeromq-dev] Communication between C++ zmq client and Python zmq Server

2018-01-24 Thread Bernardo Augusto García Loaiza
Hi, ZMQ people. Greetings. I have a C++ zeromq client process in which I am sending some data members structures *ZMQComponent.h* file #include #include // To Quat datatype #include using sofa::defaulttype::Quat; using std::string; namespace sofa { namespace component { namespace

Re: [zeromq-dev] FOSDEM 2018 - ZeroMQ gathering/hackaton?

2018-01-24 Thread Luca Boccassi
On Sun, 2017-08-27 at 18:20 +0100, Luca Boccassi wrote: > Hello, > > FOSDEM 2018 dates have been announced, it will be on Saturday 3rd and > Sunday 4th of February. [1] > > Would people be interested in replicating last year's 2-days ZMQ > gathering/hackaton before FOSDEM? > > Benjamin, would

Re: [zeromq-dev] Communication between C++ zmq client and Python zmq Server

2018-01-24 Thread Thomas Rodgers
You can have a look at Python’s ctypes module, which will let you define a ‘struct’ from Python with the same layout as your C++ struct. You can also investigate any number of serialization libraries that have C++ and Python support, eg ProtoBufs or Thrift, or MagPack or whatever. On Wed, Jan

Re: [zeromq-dev] Pattern for two clients and one server

2018-01-24 Thread Bob Eby
I recently wrote a client server application that seems a bit similar to yours. > How should I pair the request/reply calls? Initially I used single threaded REQ / REP on client and server to test. In order to avoid the server blocking, I created multiple worker threads on server each connected