728x90
반응형
execution::any_executor::any_executor
[1 / 6 오버로드] 기본 생성자
any_executor();
[2 / 6 오버로드] 비어있는 상태의 생성자(기본 생성자와 동등한 효과)
any_executor(
nullptr_t );
[3 / 6 오버로드] 복사 생성자
any_executor(
const any_executor & e);
[4 / 6 오버로드] 이동 생성자
any_executor(
any_executor && e);
[5 / 6 오버로드] 다른 execution::any_executor와 동일한 대상을 가리키는 생성자
template<
class... OtherSupportableProperties>
any_executor(
any_executor< OtherSupportableProperties...> e);
[6 / 6 오버로드] 지정된 실행기(executor)에 대한 다형성 래퍼 생성자
template<
typename Executor>
any_executor(
Executor e);
728x90
반응형
'Boost C++ Libraries > Boost.Asio' 카테고리의 다른 글
Boost.Asio 색인 - executor_binder::argument_type (0) | 2021.01.05 |
---|---|
Boost.Asio 색인 - any_io_executor (0) | 2021.01.05 |
Boost.Asio 색인 - ip::address_v6::any (0) | 2021.01.05 |
Boost.Asio 색인 - ip::address_v4::any (0) | 2021.01.05 |
Boost.Asio 색인 - execution::blocking_t::always_t::always_t (0) | 2021.01.05 |