Boost C++ Libraries/Boost.Asio

Boost.Asio 색인 - posix::basic_descriptor::basic_descriptor

까마귀75 2021. 1. 10. 15:26
728x90
반응형

posix::basic_descriptor::basic_descriptor

설명자(descriptor)를 열지 않고 생성하는 생성자(constructor)

[1 / 5 오버로드]
explicit basic_descriptor(
    const executor_type & ex);

[basic_descriptor]

[2 / 5 오버로드]

template<
    typename ExecutionContext>
explicit basic_descriptor(
    ExecutionContext & context,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);

[basic_descriptor]


기존의 기본(native) 설명자(descriptor)로 설명자(descriptor)를 생성하는 생성자(constructor)

[3 / 5 오버로드]
basic_descriptor(
    const executor_type & ex,
    const native_handle_type & native_descriptor);

[basic_descriptor]

[4 / 5 오버로드]

template<
    typename ExecutionContext>
basic_descriptor(
    ExecutionContext & context,
    const native_handle_type & native_descriptor,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);

[basic_descriptor]


다른 설명자(descriptor)에서 설명자(descriptor)를 이동 생성하는 이동-생성자(move constructor)

[5 / 5 오버로드]
basic_descriptor(
    basic_descriptor && other);

[basic_descriptor]


Boost.Asio 홈

728x90
반응형