| 282 | |
| 283 | template <typename Function, typename Allocator> |
| 284 | void executor::post(Function&& f, |
| 285 | const Allocator& a) const |
| 286 | { |
| 287 | get_impl()->post(function(static_cast<Function&&>(f), a)); |
| 288 | } |
| 289 | |
| 290 | template <typename Function, typename Allocator> |
| 291 | void executor::defer(Function&& f, |