Construct a immediate executor wrapper for the specified object.
template< typename U> immediate_executor_binder( const immediate_executor_type & e, U && u); » more...
Copy constructor.
immediate_executor_binder( const immediate_executor_binder & other); » more...
Construct a copy, but specify a different immediate executor.
immediate_executor_binder( const immediate_executor_type & e, const immediate_executor_binder & other); » more...
Construct a copy of a different immediate executor wrapper type.
template< typename U, typename OtherExecutor> immediate_executor_binder( const immediate_executor_binder< U, OtherExecutor > & other, constraint_t< is_constructible< Executor, OtherExecutor >::value > = 0, constraint_t< is_constructible< T, U >::value > = 0); » more...
Construct a copy of a different immediate executor wrapper type, but specify a different immediate executor.
template< typename U, typename OtherExecutor> immediate_executor_binder( const immediate_executor_type & e, const immediate_executor_binder< U, OtherExecutor > & other, constraint_t< is_constructible< T, U >::value > = 0); » more...
Move constructor.
immediate_executor_binder( immediate_executor_binder && other); » more...
Move construct the target object, but specify a different immediate executor.
immediate_executor_binder( const immediate_executor_type & e, immediate_executor_binder && other); » more...
Move construct from a different immediate executor wrapper type.
template< typename U, typename OtherExecutor> immediate_executor_binder( immediate_executor_binder< U, OtherExecutor > && other, constraint_t< is_constructible< Executor, OtherExecutor >::value > = 0, constraint_t< is_constructible< T, U >::value > = 0); » more...
Move construct from a different immediate executor wrapper type, but specify a different immediate executor.
template< typename U, typename OtherExecutor> immediate_executor_binder( const immediate_executor_type & e, immediate_executor_binder< U, OtherExecutor > && other, constraint_t< is_constructible< T, U >::value > = 0); » more...