asio_handler_is_continuation 핸들러의 기본 연속 함수이다. bool asio_handler_is_continuation( ... ); 비동기 작업은 현재 핸들러와 연결된 비동기 제어 흐름의 연속을 나타낼 수 있다. 이 지식을 사용하여 핸들러의 스케줄링을 작업을 최적화하도록 구현할 수 있다. 핸들러가 연속으로 나타나는 시점을 표시하기 위해 자체 핸들러에 대한 asio_handler_is_continuation을 구현한다. 연속 훅(hook)의 기본 구현은 false를 반환한다. 예제 class my_handler; bool asio_handler_is_continuation(my_handler* context) { return true; } 요구사항 일반 헤더: boost/asio/..
asio_handler_invoke (더 이상 사용되지 않음: associated_executor 특성을 사용한다.) 핸들러의 기본 호출(invoke) 함수이다. [1 / 2 오버로드] const형이 아닌 함수 개체에 사용되는 기본 핸들러 호출 훅(hook)이다. template asio_handler_invoke_is_deprecated asio_handler_invoke( Function & function, ... ); [2 / 2 오버로드] const형 함수 개체에 사용되는 기본 핸들러 호출 훅(hook)이다. template asio_handler_invoke_is_deprecated asio_handler_invoke( c..