7#include "taskflow/taskflow.hpp"
19 auto Async(F&& f) -> std::future<std::invoke_result_t<std::decay_t<F>>>
21 return m_executor->async(std::forward<F>(f));
28 m_executor->silent_async(std::forward<F>(f));
34 return m_executor->num_workers();
38 tf::Executor* m_executor;
Dispatcher for running tasks on the thread pool outside of a TaskGraph.
Definition: AsyncDispatcher.h:13
auto Async(F &&f) -> std::future< std::invoke_result_t< std::decay_t< F > > >
Run a function asynchronously, returning the eventual result in a std::future.
Definition: AsyncDispatcher.h:19
void SilentAsync(F &&f)
Run a function asynchronously without returning the result.
Definition: AsyncDispatcher.h:26
auto MaxConcurrency() const -> size_t
Get the number of workers in the thread pool.
Definition: AsyncDispatcher.h:32