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
반응형
'Boost C++ Libraries > Boost.Asio' 카테고리의 다른 글
Boost.Asio 색인 - streambuf (0) | 2021.03.05 |
---|---|
Boost.Asio 색인 - ssl::stream::stream (0) | 2021.03.05 |
Boost.Asio 색인 - io_context::strand::strand (0) | 2021.03.05 |
Boost.Asio 색인 - serial_port_base::stop_bits::store (0) | 2021.03.05 |
Boost.Asio 색인 - serial_port_base::parity::store (0) | 2021.03.05 |