| 385 | static const task_base_vtable vtable_impl; |
| 386 | template<typename... Args> |
| 387 | explicit task_func(Args&&... args) |
| 388 | { |
| 389 | this->vtable = &vtable_impl; |
| 390 | this->init_func(std::forward<Args>(args)...); |
| 391 | } |
| 392 | |
| 393 | // Run the stored function |
| 394 | static void run(task_base* t) LIBASYNC_NOEXCEPT |