I need a broker-less pattern for reading and writing messages between nodes without remove any message from queues until some monitor system accept removing message.
Can i do this with zeromq?, in zmq if one publisher node die the message queued on network is gone too? how can i save this queue in network!!!
( i want send a message with publisher and subscribers read message but don't delete that from queue until my Qos monitor remove that from array. and if my publisher die message queue created with it should not be deleted.
Can i implement these functionality with current patterns in zmq? )