template <>
class NaturalSyncClientImpl
Defined at line 161 of file fidling/gen/sdk/fidl/fuchsia.process/fuchsia.process/cpp/fidl/fuchsia.process/cpp/natural_messaging.h
Public Methods
::fidl::Result< ::fuchsia_process::Launcher::Launch> Launch (::fidl::Request< ::fuchsia_process::Launcher::Launch> request)
Creates and starts the process described by `info`.
After processing this message, the `Launcher` is reset to its initial
state and is ready to launch another process.
`process` is present if, and only if, `status` is `ZX_OK`.
::fidl::Result< ::fuchsia_process::Launcher::CreateWithoutStarting> CreateWithoutStarting (::fidl::Request< ::fuchsia_process::Launcher::CreateWithoutStarting> request)
Creates the process described by `info` but does not start it.
After processing this message, the `Launcher` is reset to its initial
state and is ready to launch another process.
The caller is responsible for calling `zx_process_start` using the data
in `ProcessStartData` to actually start the process.
`data` is present if, and only if, `status` is `ZX_OK`.
::fit::result< ::fidl::OneWayError> AddArgs (const ::fidl::Request< ::fuchsia_process::Launcher::AddArgs> & request)
Adds the given arguments to the command-line for the process.
Calling this method multiple times concatenates the arguments.
::fit::result< ::fidl::OneWayError> AddEnvirons (const ::fidl::Request< ::fuchsia_process::Launcher::AddEnvirons> & request)
Adds the given variables to the environment variables for the process.
Calling this method multiple times concatenates the variables.
::fit::result< ::fidl::OneWayError> AddNames (::fidl::Request< ::fuchsia_process::Launcher::AddNames> request)
Adds the given names to the namespace for the process.
The paths in the namespace must be non-overlapping. See
<https
://fuchsia.dev/fuchsia-src/concepts/process/namespaces> for details.
Calling this method multiple times concatenates the names.
::fit::result< ::fidl::OneWayError> AddHandles (::fidl::Request< ::fuchsia_process::Launcher::AddHandles> request)
Adds the given handles to the startup handles for the process.
Calling this method multiple times concatenates the handles.
::fit::result< ::fidl::OneWayError> SetOptions (const ::fidl::Request< ::fuchsia_process::Launcher::SetOptions> & request)
Sets the options with which the process is created.
Calling this method multiple times will overwrite the current options.