You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Makes the low level client and high level service a bit more predictable
to not have to deal with a default match rule and should lower
connection overhead by eliminating a call in those cases.
Also fix several bugs.
Mixed use of the low and high level interfaces on the same bus connection is not recommended.
27
+
26
28
:example: Call a standard interface
27
29
28
30
.. code-block:: python3
@@ -41,7 +43,7 @@ The primary methods and classes of the low-level interface are:
41
43
42
44
print(reply.body[0])
43
45
44
-
:example: A custom method handler
46
+
:example: A custom method handler. Note that to receive these messages, you must `add a match rule <https://dbus.freedesktop.org/doc/dbus-specification.html#message-bus-routing-match-rules>`_ for the types of messages you want to receive.
0 commit comments