| 476 | */ |
| 477 | template <typename Function, typename Allocator> |
| 478 | void defer(Function&& f, const Allocator& a) const |
| 479 | { |
| 480 | executor_.defer(static_cast<Function&&>(f), a); |
| 481 | } |
| 482 | #endif // !defined(BOOST_ASIO_NO_TS_EXECUTORS) |
| 483 | |
| 484 | /// Compare two inline_or_executors for equality. |