Boost C++ Libraries/Boost.Asio
Boost.Asio 색인 - strand::strand
까마귀75
2021. 3. 5. 12:05
728x90
반응형
strand::strand
기본 생성자.
strand();
[strand]
지정된 실행기(executor)에 대한 스트랜드(strand)를 생성한다.
template< typename Executor1> explicit strand( const Executor1 & e, typename enable_if< conditional< !is_same< Executor1, strand >::value, is_convertible< Executor1, Executor >, false_type >::type::value >::type * = 0);
복사 생성자.
strand( const strand & other);
[strand]
변환 생성자.
template< class OtherExecutor> strand( const strand< OtherExecutor > & other);
이동 생성자.
strand( strand && other);
[strand]
변환 이동 생성자.
template< class OtherExecutor> strand( strand< OtherExecutor > && other);
728x90
반응형