a new object with type S, a subtype of T
|
|
|
append(*args,
**kwargs)
Set the message's arguments from the positional parameter, according to
the signature given by the signature keyword parameter. |
source code
|
|
Message (or subclass)
|
copy(message)
Deep-copy the message, resetting the serial number to zero. |
source code
|
|
list
|
|
bool
|
get_auto_start(message)
Return true if this message will cause an owner for the destination name
to be auto-started. |
source code
|
|
str or None
|
get_destination()
Return the message's destination bus name, or None if none. |
source code
|
|
str or None
|
|
str or None
|
|
str or None
|
|
bool
|
get_no_reply(message)
Return true if this message need not be replied to. |
source code
|
|
ObjectPath or None
|
get_path()
Return the message's destination object path (if it's a method call) or
source object path (if it's a method reply or a signal) or None (if it
has no path). |
source code
|
|
list of str, or None
|
|
long
|
get_reply_serial(message)
Returns the serial that the message is a reply to or 0 if none. |
source code
|
|
str or None
|
get_sender()
Return the message's sender unique name, or None if none. |
source code
|
|
long
|
|
Signature or None
|
|
int
|
get_type(message)
Returns the type of the message. |
source code
|
|
|
has_destination(...)
has_destination(bus_name: str) -> bool |
source code
|
|
|
has_interface(...)
has_interface(interface: str or None) -> bool |
source code
|
|
|
has_member(...)
has_member(name: str or None) -> bool |
source code
|
|
|
has_path(...)
has_path(name: str or None) -> bool |
source code
|
|
|
has_sender(...)
has_sender(unique_name: str) -> bool |
source code
|
|
|
has_signature(...)
has_signature(signature: str) -> bool |
source code
|
|
|
|
|
is_method_call(...)
is_method_call(interface: str, member: str) -> bool |
source code
|
|
|
is_signal(...)
is_signal(interface: str, member: str) -> bool |
source code
|
|
None
|
set_auto_start(message,
bool)
Set whether this message will cause an owner for the destination name
to be auto-started. |
source code
|
|
|
set_destination(...)
set_destination(bus_name: str or None) |
source code
|
|
|
set_error_name(...)
set_error_name(name: str or None) |
source code
|
|
|
set_interface(...)
set_interface(name: str or None) |
source code
|
|
|
set_member(...)
set_member(unique_name: str or None) |
source code
|
|
None
|
set_no_reply(message,
bool)
Set whether no reply to this message is required. |
source code
|
|
|
|
None
|
set_reply_serial(message,
bool)
Set the serial that this message is a reply to. |
source code
|
|
|
set_sender(...)
set_sender(unique_name: str or None) |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|