728x90
반응형
bind_executor
T 유형의 개체를 Executor 유형의 실행기(executor)와 연결한다.
template< typename Executor, typename T> executor_binder< typename decay< T >::type, Executor > bind_executor( const Executor & ex, T && t, typename enable_if< is_executor< Executor >::value||execution::is_executor< Executor >::value >::type * = 0);
T 유형의 개체를 실행 컨텍스트(execution context)의 실행기(executor)와 연결한다.
template< typename ExecutionContext, typename T> executor_binder< typename decay< T >::type, typename ExecutionContext::executor_type > bind_executor( ExecutionContext & ctx, T && t, typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type * = 0);
요구사항
일반 헤더: boost/asio/bind_executor.hpp
편의 헤더: boost/asio.hpp
Boost.Asio 홈
728x90
반응형
'Boost C++ Libraries > Boost.Asio' 카테고리의 다른 글
Boost.Asio 색인 - execution::blocking_t::blocking_t (0) | 2021.01.12 |
---|---|
Boost.Asio 색인 - execution::blocking_adaptation_t::blocking_adaptation_t (0) | 2021.01.12 |
Boost.Asio 색인 - basic_stream_socket::bind (0) | 2021.01.12 |
Boost.Asio 색인 - basic_socket_acceptor::bind (0) | 2021.01.12 |
Boost.Asio 색인 - basic_socket::bind (0) | 2021.01.12 |