| 613 | } |
| 614 | |
| 615 | public: |
| 616 | /// Bulk execution function. |
| 617 | template <typename Function> |
| 618 | void bulk_execute(ASIO_MOVE_ARG(Function) f, std::size_t n) const |
| 619 | { |
| 620 | this->do_bulk_execute(ASIO_MOVE_CAST(Function)(f), n, |
| 621 | integral_constant<bool, (Bits & blocking_always) != 0>()); |
| 622 | } |
| 623 | |
| 624 | /// Schedule function. |
| 625 | /** |