PrevUpHomeNext

Class on_CreateProcess_success

boost::process::initializers::on_CreateProcess_success

Synopsis

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


class on_CreateProcess_success {
public:
  // construct/copy/destruct
  explicit on_CreateProcess_success(handler_type);
};

Description

Generic initializer to execute any code after CreateProcess has been called successfully.

Windows only.

on_CreateProcess_success public construct/copy/destruct

  1. explicit on_CreateProcess_success(handler_type handler);

    Constructor.

    handler_type must be a function or functor with this signature: void(executor&)


PrevUpHomeNext