| 163 | } |
| 164 | |
| 165 | bool manual_executor::loop_once() { |
| 166 | return loop_impl(1) != 0; |
| 167 | } |
| 168 | |
| 169 | bool manual_executor::loop_once_for(std::chrono::milliseconds max_waiting_time) { |
| 170 | if (max_waiting_time == std::chrono::milliseconds(0)) { |
no outgoing calls