| 271 | |
| 272 | template <typename Function, typename Allocator> |
| 273 | void executor::defer(ASIO_MOVE_ARG(Function) f, |
| 274 | const Allocator& a) const |
| 275 | { |
| 276 | get_impl()->defer(function(ASIO_MOVE_CAST(Function)(f), a)); |
| 277 | } |
| 278 | |
| 279 | template <typename Executor> |
| 280 | Executor* executor::target() ASIO_NOEXCEPT |
no test coverage detected