| 139 | } |
| 140 | |
| 141 | void poll() { |
| 142 | poll_queue::midi_in_msg m; |
| 143 | while (queue.try_dequeue(m)) |
| 144 | boost::variant2::visit(*this, std::move(m)); |
| 145 | } |
| 146 | |
| 147 | void operator()(const poll_queue::error_message &msg) const noexcept { |
| 148 | if (python_midi1_callbacks.on_error) |
no test coverage detected