mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 10:33:52 +01:00
Merge pull request #631 from egecetin/master
Add on_monitor_stopped function for monitor_t
This commit is contained in:
commit
23cd83e83b
3
zmq.hpp
3
zmq.hpp
@ -2387,6 +2387,8 @@ class monitor_t
|
||||
|
||||
_socket = socket_ref();
|
||||
}
|
||||
|
||||
virtual void on_monitor_stopped() {}
|
||||
#endif
|
||||
virtual void on_monitor_started() {}
|
||||
virtual void on_event_connected(const zmq_event_t &event_, const char *addr_)
|
||||
@ -2528,6 +2530,7 @@ class monitor_t
|
||||
|
||||
#ifdef ZMQ_EVENT_MONITOR_STOPPED
|
||||
if (event->event == ZMQ_EVENT_MONITOR_STOPPED) {
|
||||
on_monitor_stopped();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user