Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

immediate_executor_binder::immediate_executor_binder

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);
  » 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);
  » 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);
  » 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);
  » more...

PrevUpHomeNext