| 742 | |
| 743 | template <typename Function> |
| 744 | typename enable_if< |
| 745 | execution::can_execute<const Executor&, Function>::value |
| 746 | >::type execute(ASIO_MOVE_ARG(Function) f) const |
| 747 | { |
| 748 | blocking_adaptation::blocking_execute( |
| 749 | executor_, ASIO_MOVE_CAST(Function)(f)); |
| 750 | } |
| 751 | |
| 752 | friend bool operator==(const adapter& a, const adapter& b) ASIO_NOEXCEPT |
| 753 | { |
no outgoing calls
no test coverage detected