|
__init__(self,
*args,
**kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
get_object(self,
bus_name=None,
object_path=None,
introspect=True,
**kwargs)
Return a local proxy for the given remote object. |
source code
|
|
|
add_signal_receiver(self,
handler_function,
signal_name=None,
dbus_interface=None,
bus_name=None,
path=None,
**keywords)
Arrange for the given function to be called when a signal matching
the parameters is received. |
source code
|
|
|
_iter_easy_matches(self,
path,
dbus_interface,
member) |
source code
|
|
|
remove_signal_receiver(self,
handler_or_match,
signal_name=None,
dbus_interface=None,
bus_name=None,
path=None,
**keywords) |
source code
|
|
|
|
|
_signal_func(self,
message)
D-Bus filter function. Handle signals by dispatching to Python
callbacks kept in the match-rule tree. |
source code
|
|
|
call_async(self,
bus_name,
object_path,
dbus_interface,
method,
signature,
args,
reply_handler,
error_handler,
timeout=-1.0,
utf8_strings=False,
byte_arrays=False,
require_main_loop=True)
Call the given method, asynchronously. |
source code
|
|
|
call_blocking(self,
bus_name,
object_path,
dbus_interface,
method,
signature,
args,
timeout=-1.0,
utf8_strings=False,
byte_arrays=False)
Call the given method, synchronously.
:Since: 0.81.0 |
source code
|
|
|
call_on_disconnection(self,
callable)
Arrange for callable to be called with one argument (this
Connection object) when the Connection becomes
disconnected. |
source code
|
|
Inherited from _dbus_bindings.Connection :
__new__ ,
add_message_filter ,
close ,
flush ,
get_is_authenticated ,
get_is_connected ,
get_peer_unix_process_id ,
get_peer_unix_user ,
get_unique_name ,
get_unix_fd ,
list_exported_child_objects ,
remove_message_filter ,
send_message ,
send_message_with_reply ,
send_message_with_reply_and_block ,
set_allow_anonymous ,
set_exit_on_disconnect ,
set_unique_name
Inherited from _dbus_bindings.Connection (private):
_new_for_bus ,
_register_object_path ,
_require_main_loop ,
_unregister_object_path
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|