Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
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