| 132 | } |
| 133 | |
| 134 | public: |
| 135 | template<typename E> |
| 136 | Async<E> ScheduleTask(const std::function<std::shared_ptr<E> (void)>& process) { |
| 137 | return ScheduleTask_<E>(process); |
| 138 | } |
| 139 | |
| 140 | template<typename E> |
| 141 | Async<E> ScheduleTask(const std::function<E * (void)>& process) { |
nothing calls this directly
no test coverage detected