mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-23 02:17:51 +02:00
GDBus: Use call() instead of invoke_method()
Lots of people been suggesting this. We still use MethodInvocation / method_invocation for handling incoming method calls so use call() instead of invoke_method() helps to separate the client and server facilities. Which is a good thing(tm).
This commit is contained in:
@@ -2361,10 +2361,10 @@ g_dbus_connection_get_guid
|
||||
g_dbus_connection_get_unique_name
|
||||
g_dbus_connection_get_capabilities
|
||||
g_dbus_connection_get_peer_credentials
|
||||
GDBusInvokeMethodFlags
|
||||
g_dbus_connection_invoke_method
|
||||
g_dbus_connection_invoke_method_finish
|
||||
g_dbus_connection_invoke_method_sync
|
||||
GDBusCallFlags
|
||||
g_dbus_connection_call
|
||||
g_dbus_connection_call_finish
|
||||
g_dbus_connection_call_sync
|
||||
g_dbus_connection_emit_signal
|
||||
GDBusSignalCallback
|
||||
g_dbus_connection_signal_subscribe
|
||||
@@ -2495,9 +2495,9 @@ g_dbus_proxy_get_cached_property_names
|
||||
g_dbus_proxy_get_cached_property
|
||||
g_dbus_proxy_set_interface_info
|
||||
g_dbus_proxy_get_interface_info
|
||||
g_dbus_proxy_invoke_method
|
||||
g_dbus_proxy_invoke_method_finish
|
||||
g_dbus_proxy_invoke_method_sync
|
||||
g_dbus_proxy_call
|
||||
g_dbus_proxy_call_finish
|
||||
g_dbus_proxy_call_sync
|
||||
<SUBSECTION Standard>
|
||||
G_DBUS_PROXY
|
||||
G_IS_DBUS_PROXY
|
||||
|
@@ -55,9 +55,9 @@
|
||||
<row><entry>dbus_g_connection_unregister_g_object()</entry><entry>g_dbus_connection_unregister_object()</entry></row>
|
||||
<row><entry>dbus_g_object_type_install_info()</entry><entry>introspection data is installed while registering
|
||||
an object, see g_dbus_connection_register_object()</entry></row>
|
||||
<row><entry>dbus_g_proxy_begin_call()</entry><entry>g_dbus_proxy_invoke_method()</entry></row>
|
||||
<row><entry>dbus_g_proxy_end_call()</entry><entry>g_dbus_proxy_invoke_method_finish()</entry></row>
|
||||
<row><entry>dbus_g_proxy_call()</entry><entry>g_dbus_proxy_invoke_method_sync()</entry></row>
|
||||
<row><entry>dbus_g_proxy_begin_call()</entry><entry>g_dbus_proxy_call()</entry></row>
|
||||
<row><entry>dbus_g_proxy_end_call()</entry><entry>g_dbus_proxy_call_finish()</entry></row>
|
||||
<row><entry>dbus_g_proxy_call()</entry><entry>g_dbus_proxy_call_sync()</entry></row>
|
||||
<row><entry>dbus_g_error_domain_register()</entry><entry>g_dbus_error_register_error_domain()</entry></row>
|
||||
<row><entry>dbus_g_error_has_name()</entry><entry>no direct equivalent, see g_dbus_error_get_remote_error()</entry></row>
|
||||
<row><entry>dbus_g_method_return()</entry><entry>g_dbus_method_invocation_return_value()</entry></row>
|
||||
|
Reference in New Issue
Block a user