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

Struct template rebind_executor

boost::process::v2::basic_process::rebind_executor — Rebinds the process_handle to another executor.

Synopsis

// In header: <boost/process/v2/process.hpp>



// Rebinds the process_handle to another executor.
template<typename Executor1> 
struct rebind_executor {
  // types
  typedef basic_process< Executor1 > other;  // The socket type when rebound to the specified executor. 
};

PrevUpHomeNext