Boost C++ Libraries/Boost.Asio

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

까마귀75 2021. 1. 12. 11:26
728x90
반응형

posix::basic_stream_descriptor::basic_stream_descriptor

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

[1 / 5 오버로드]

explicit basic_stream_descriptor(
    const executor_type & ex);

[basic_stream_descriptor]

 

[2 / 5 오버로드]

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

[basic_stream_descriptor]


주어진 기본(native) 설명자(descriptor)로 스트림 설명자(descriptor)를 생성하는 생성자(constructor)

[3 / 5 오버로드]

basic_stream_descriptor(
    const executor_type & ex,
    const native_handle_type & native_descriptor);

[basic_stream_descriptor]

 

[4 / 5 오버로드]

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

[basic_stream_descriptor]


다른 스트림 설명자(descriptor)로 스트림 설명자(descriptor)를 이동 생성하는 이동-생성자(move constructor)

[5 / 5 오버로드]

basic_stream_descriptor(
    basic_stream_descriptor && other);

[basic_stream_descriptor]


Boost.Asio 홈

728x90
반응형