Package dbus :: Module lowlevel :: Class MethodCallMessage
[hide private]
[frames] | no frames]

Class MethodCallMessage

source code

object --+    
         |    
   Message --+
             |
            MethodCallMessage

A method-call message.

Constructor:

dbus.lowlevel.MethodCallMessage(destination: str or None, path: str,
                                interface: str or None, method: str)

destination is the destination bus name, or None to send the message directly to the peer (usually the bus daemon).

path is the object-path of the object whose method is to be called.

interface is the interface qualifying the method name, or None to omit the interface from the message header.

method is the method name (member name).



Instance Methods [hide private]
 
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code

Inherited from Message: __new__, append, copy, get_args_list, get_auto_start, get_destination, get_error_name, get_interface, get_member, get_no_reply, get_path, get_path_decomposed, get_reply_serial, get_sender, get_serial, get_signature, get_type, has_destination, has_interface, has_member, has_path, has_sender, has_signature, is_error, is_method_call, is_signal, set_auto_start, set_destination, set_error_name, set_interface, set_member, set_no_reply, set_path, set_reply_serial, set_sender

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Static Methods [hide private]

Inherited from Message: guess_signature

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__