zeromq / azmq

C++ language binding library integrating ZeroMQ with Boost Asio
Boost Software License 1.0
318 stars 108 forks source link

How to set HWM socket options on sockets used by azmq::actor pattern? #146

Open mschuckmann opened 6 years ago

mschuckmann commented 6 years ago

I find myself in the situation where I want to increase the HWM socket option on the PAIR sockets created by the azmq::actor pattern but I can't figure out how to do it since the actor_service code creates and binds or connects the sockets all in one go and you can't change the HWM option after a bind or connect.

Do I need to unbind/disconnect the sockets change the options and reconnect the sockets or what am I missing?

rodgert commented 5 years ago

This should be possible, let me do some digging.