template <>
class NaturalClientImpl
Defined at line 155 of file fidling/gen/sdk/fidl/fuchsia.boot/fuchsia.boot/cpp/fidl/fuchsia.boot/cpp/natural_messaging.h
Public Methods
::fidl::internal::NaturalThenable< ::fuchsia_boot::Arguments::GetString> GetString (const ::fidl::Request< ::fuchsia_boot::Arguments::GetString> & request)
Get the value of a boot argument `key`.
::fidl::internal::NaturalThenable< ::fuchsia_boot::Arguments::GetStrings> GetStrings (const ::fidl::Request< ::fuchsia_boot::Arguments::GetStrings> & request)
Get the values of a list of arguments specified in `keys`.
::fidl::internal::NaturalThenable< ::fuchsia_boot::Arguments::GetBool> GetBool (const ::fidl::Request< ::fuchsia_boot::Arguments::GetBool> & request)
Get the boolean value of a boot argument `keys`,
or return `defaultval` if the argument is not present.
A key is considered to be false if its string value is exactly
"off", "0", or "false". Any other value (including empty) is returned
as true.
::fidl::internal::NaturalThenable< ::fuchsia_boot::Arguments::GetBools> GetBools (const ::fidl::Request< ::fuchsia_boot::Arguments::GetBools> & request)
Get the boolean values of a list of boot arguments `keys.key`,
or return `keys.defaultval` for each if not present.
::fidl::internal::NaturalThenable< ::fuchsia_boot::Arguments::Collect> Collect (const ::fidl::Request< ::fuchsia_boot::Arguments::Collect> & request)
Get all boot arguments with keys starting with
`prefix`. Returns a vector with strings of the form 'key=value'.
TODO(https://fxbug.dev/42108659) - remove Collect once boot arguments have been componentised.