728x90
반응형
thread_pool::basic_executor_type::execute
실행 함수.
template< typename Function> void execute( Function && f) const;
이 함수를 직접 호출하면 안된다. execution::execute 사용자 정의 지점과 함께 사용하기 위한 것이다.
다음은 사용 예제이다:
auto ex = my_thread_pool.executor(); execution::execute(ex, my_function_object);
728x90
반응형
'Boost C++ Libraries > Boost.Asio' 카테고리의 다른 글
Boost.Asio 색인 - execution::blocking (0) | 2021.01.24 |
---|---|
Boost.Asio 색인 - execution::allocator (0) | 2021.01.24 |
Boost.Asio 색인 - strand::execute (0) | 2021.01.22 |
Boost.Asio 색인 - io_context::basic_executor_type::execute (0) | 2021.01.22 |
Boost.Asio 색인 - execution::any_executor::execute (0) | 2021.01.22 |