NcEngine
AsyncDispatcher.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "taskflow/taskflow.hpp"
8
9namespace nc::task
10{
13{
14 public:
15 explicit AsyncDispatcher(tf::Executor* executor);
16
18 template<class F>
19 auto Async(F&& f) -> std::future<std::invoke_result_t<std::decay_t<F>>>
20 {
21 return m_executor->async(std::forward<F>(f));
22 }
23
25 template<class F>
26 void SilentAsync(F&& f)
27 {
28 m_executor->silent_async(std::forward<F>(f));
29 }
30
32 auto MaxConcurrency() const -> size_t
33 {
34 return m_executor->num_workers();
35 }
36
37 private:
38 tf::Executor* m_executor;
39};
40} // namespace nc::task
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