| 607 | */ |
| 608 | template <typename Function> |
| 609 | void execute(ASIO_MOVE_ARG(Function) f) const |
| 610 | { |
| 611 | this->do_execute(ASIO_MOVE_CAST(Function)(f), |
| 612 | integral_constant<bool, (Bits & blocking_always) != 0>()); |
| 613 | } |
| 614 | |
| 615 | public: |
| 616 | /// Bulk execution function. |
nothing calls this directly
no test coverage detected