| 325 | */ |
| 326 | template <typename Function, typename Allocator> |
| 327 | void post(ASIO_MOVE_ARG(Function) f, const Allocator& a) const |
| 328 | { |
| 329 | detail::strand_executor_service::post(impl_, |
| 330 | executor_, ASIO_MOVE_CAST(Function)(f), a); |
| 331 | } |
| 332 | |
| 333 | /// Request the strand to invoke the given function object. |
| 334 | /** |
no outgoing calls
no test coverage detected