Boost C++ Libraries/Boost.Asio

Boost.Asio 색인 - windows::basic_stream_handle::basic_stream_handle

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

windows::basic_stream_handle::basic_stream_handle

스트림 핸들을 열지않고 생성하는 생성자(constructor)

[1 / 5 오버로드]

explicit basic_stream_handle(
    const executor_type & ex);

[basic_stream_handle]

 

[2 / 5 오버로드]

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

[basic_stream_handle]


주어진 기본(native) 핸들로 스트림 핸들을 생성하는 생성자(constructor)

[3 / 5 오버로드]

basic_stream_handle(
    const executor_type & ex,
    const native_handle_type & handle);

[basic_stream_handle]

 

[4 / 5 오버로드]

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

[basic_stream_handle]


다른 핸들로 스트림 핸들을 이동 생성하는 이동-생성자(move constructor)

[5 / 5 오버로드]

basic_stream_handle(
    basic_stream_handle && other);

[basic_stream_handle]


Boost.Asio 홈

728x90
반응형