| 417 | IoExecutor> base2_type; |
| 418 | |
| 419 | handler_work(Handler& handler, const IoExecutor& io_ex) noexcept |
| 420 | : base1_type(0, 0, io_ex), |
| 421 | base2_type(base1_type::owns_work(), |
| 422 | boost::asio::get_associated_executor(handler, io_ex), io_ex) |
| 423 | { |
| 424 | } |
| 425 | |
| 426 | template <typename Function> |
| 427 | void complete(Function& function, Handler& handler) |
nothing calls this directly
no test coverage detected