Re: [zeromq-dev] How to get data a ZMQ_PUB service?

2018-02-13 Thread Luca Boccassi
On Mon, 2018-02-12 at 16:40 -0500, Bernardo Augusto García Loaiza wrote: > Can I publisher service receive data from an external source and send > them > to the subscribers? > > In the wuserver.cpp sample > the data > are generated from the same script ... >

Re: [zeromq-dev] How to get data a ZMQ_PUB service?

2018-02-12 Thread Justin Karneges
ZMQ programs may only send dummy data that has originated from within the process. For example if your program obtains data by reading a file or performing a network operation unrelated to zmq, and attempts to send that data over a zmq socket, your computer will promptly catch fire. But I have only

[zeromq-dev] How to get data a ZMQ_PUB service?

2018-02-12 Thread Bernardo Augusto García Loaiza
Can I publisher service receive data from an external source and send them to the subscribers? In the wuserver.cpp sample the data are generated from the same script ... Can I write a ZMQ_PUBLISHER entity which receive data from external data source / appli