Home | Trees | Indices | Help |
---|
|
object --+ | ProxyObject
A proxy to the remote Object.
A ProxyObject is provided by the Bus. ProxyObjects have member functions, and can be called like normal Python objects.
|
|||
ProxyMethodClass A proxy method. |
|||
DeferredMethodClass A proxy method which will only get called once we have its introspection reply. |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
INTROSPECT_STATE_DONT_INTROSPECT = 0
|
|||
INTROSPECT_STATE_INTROSPECT_IN_PROGRESS = 1
|
|||
INTROSPECT_STATE_INTROSPECT_DONE = 2
|
|
|||
bus_name The bus name to which this proxy is bound. |
|||
requested_bus_name The bus name which was requested when this proxy was instantiated. |
|||
object_path The object-path of this proxy. |
|||
Inherited from |
|
|
|
Return a proxy method representing the given D-Bus method. The returned proxy method can be called in the usual way. For instance, proxy.get_dbus_method("Foo", dbus_interface='com.example.Bar')(123) is equivalent to: proxy.Foo(123, dbus_interface='com.example.Bar') or even: getattr(proxy, "Foo")(123, dbus_interface='com.example.Bar') However, using get_dbus_method is the only way to call D-Bus methods with certain awkward names - if the author of a service implements a method called connect_to_signal or even __getattr__, you'll need to use get_dbus_method to call them. For services which follow the D-Bus convention of CamelCaseMethodNames this won't be a problem. |
|
|
|
bus_nameThe bus name to which this proxy is bound. (Read-only, may change.) If the proxy was instantiated using a unique name, this property is that unique name. If the proxy was instantiated with a well-known name and with follow_name_owner_changes set false (the default), this property is the unique name of the connection that owned that well-known name when the proxy was instantiated, which might not actually own the requested well-known name any more. If the proxy was instantiated with a well-known name and with follow_name_owner_changes set true, this property is that well-known name.
|
requested_bus_nameThe bus name which was requested when this proxy was instantiated.
|
object_pathThe object-path of this proxy.
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Sun Jul 17 19:55:42 2016 | http://epydoc.sourceforge.net |