mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 05:05:07 +00:00

Plumbs synchronous calls for adding and removing group entries to config files. This is useful for services like SystemServer which default to group names for executable paths, and for removing all keys at once.
9 lines
465 B
Text
9 lines
465 B
Text
endpoint ConfigClient
|
|
{
|
|
notify_changed_string_value(String domain, String group, String key, String value) =|
|
|
notify_changed_i32_value(String domain, String group, String key, i32 value) =|
|
|
notify_changed_bool_value(String domain, String group, String key, bool value) =|
|
|
notify_removed_key(String domain, String group, String key) =|
|
|
notify_removed_group(String domain, String group) =|
|
|
notify_added_group(String domain, String group) =|
|
|
}
|