Boost C++ Libraries/Boost.Asio

Boost.Asio 색인 - execution::any_executor::any_executor

까마귀75 2021. 1. 5. 10:25
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);

[Executor 요구사항]

Boost.Asio 홈

728x90
반응형