posix::basic_stream_descriptor::release posix::basic_descriptor에서 상속된다. 기본(native) 설명자(descriptor) 구현의 소유권을 해제한다. native_handle_type release(); 이 함수는 설명자(descriptor)의 기저 표현을 얻는데 사용할 수 있다. 이 함수를 호출한 후, is_open()은 false를 반환한다. 호출자(caller)는 설명자(descriptor)를 close 할 책임이 있다. 처리되지 않은 모든 비동기 읽기/쓰기 작업이 즉시 종료되고, 취소된 작업에 대한 핸들러에 boost::asio::error::operation_aborted 오류를 전달한다. Boost.Asio 홈
posix::basic_descriptor::release 기본(native) 설명자(descriptor) 구현의 소유권을 해제한다. native_handle_type release(); 이 함수는 설명자(descriptor)의 기저 표현을 얻는데 사용할 수 있다. 이 함수를 호출한 후, is_open()은 false를 반환한다. 호출자(caller)는 설명자(descriptor)를 close 할 책임이 있다. 처리되지 않은 모든 비동기 읽기/쓰기 작업이 즉시 종료되고, 취소된 작업에 대한 핸들러에 boost::asio::error::operation_aborted 오류를 전달한다. Boost.Asio 홈
posix::stream_descriptor 스트림 지향 설명자(descriptor)의 일반적인 사용에 대한 typedef이다. typedef basic_stream_descriptor stream_descriptor; 유 형 이 름 설 명 rebind_executor 설명자(descritpr)유형을 다른 실행기(executor)로 리바인드한다. bytes_readable 블럭(차단)없이 읽을 수 있는 데이터의 양을 가져오는 IO 제어 명령이다. executor_type 개체와 연결된 실행기(executor)의 유형이다. lowest_layer_type 설명자(descriptor)는 항상 최하위 계층이다. native_handle_type 설명자(descriptor)의 기본(native) 표현이다. wa..