| 206 | } |
| 207 | |
| 208 | bool manual_executor::wait_for_task_for(std::chrono::milliseconds max_waiting_time) { |
| 209 | return wait_for_tasks_impl(1, time_point_from_now(max_waiting_time)) == 1; |
| 210 | } |
| 211 | |
| 212 | void manual_executor::wait_for_tasks(size_t count) { |
| 213 | wait_for_tasks_impl(count); |