| 2694 | void add(fd_t fd, event_flags events) { add_impl(fd, events, nullptr); } |
| 2695 | |
| 2696 | void remove(zmq::socket_ref socket) |
| 2697 | { |
| 2698 | if (0 != zmq_poller_remove(poller_ptr.get(), socket.handle())) { |
| 2699 | throw error_t(); |
| 2700 | } |
| 2701 | } |
| 2702 | |
| 2703 | void remove(fd_t fd) |
| 2704 | { |
no test coverage detected