You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interface to zmq::socket_t was updated to deprecate using the C flags (such as ZMQ_DONTWAIT), preferring instead enum classes (zmq::recv_flags::dontwait).
However, the zmq::multipart_t::send and recv functions still take integer flags arguments, instead of the enumerations.
It seems that, for consistency, these methods should use the enum classes.
The text was updated successfully, but these errors were encountered:
The interface to
zmq::socket_t
was updated to deprecate using the C flags (such asZMQ_DONTWAIT
), preferring instead enum classes (zmq::recv_flags::dontwait
).However, the
zmq::multipart_t::send
andrecv
functions still take integer flags arguments, instead of the enumerations.It seems that, for consistency, these methods should use the enum classes.
The text was updated successfully, but these errors were encountered: