| 329 | */ |
| 330 | template <typename Function, typename Allocator> |
| 331 | void defer(Function&& f, const Allocator& a) const |
| 332 | { |
| 333 | detail::strand_executor_service::defer(impl_, |
| 334 | executor_, static_cast<Function&&>(f), a); |
| 335 | } |
| 336 | #endif // !defined(BOOST_ASIO_NO_TS_EXECUTORS) |
| 337 | |
| 338 | /// Determine whether the strand is running in the current thread. |
nothing calls this directly
no outgoing calls
no test coverage detected