mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 23:00:07 +01:00
D-Bus 1.3.1 (2010) introduced the standard "PropertiesChanged" signal
on "org.freedesktop.DBus.Properties". NetworkManager is old, and predates
this API. From that time, it still had it's own PropertiesChanged signal
that are emitted together with the standard ones. NetworkManager
supports the standard PropertiesChanged signal since it switched to
gdbus library in version 1.2.0 (2016).
These own signals are deprecated for a long time already ([1], 2016), and
are hopefully not used by anybody anymore. libnm-glib was using them and
relied on them, but that library is gone. libnm does not use them and neither
does plasma-nm.
Hopefully no users are left that are affected by this API break.
[1] 6fb917178a
35 lines
907 B
XML
35 lines
907 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<node name="/">
|
|
<!--
|
|
org.freedesktop.NetworkManager.Device.Statistics:
|
|
@short_description: Device Statistic Counters
|
|
|
|
-->
|
|
<interface name="org.freedesktop.NetworkManager.Device.Statistics">
|
|
|
|
<!--
|
|
RefreshRateMs:
|
|
|
|
Refresh rate of the rest of properties of this interface. The properties
|
|
are guaranteed to be refreshed each RefreshRateMs milliseconds in case
|
|
the underlying counter has changed too.
|
|
If zero, there is no guaranteed refresh rate of the properties.
|
|
-->
|
|
<property name="RefreshRateMs" type="u" access="readwrite"/>
|
|
|
|
<!--
|
|
TxBytes:
|
|
|
|
Number of transmitted bytes
|
|
-->
|
|
<property name="TxBytes" type="t" access="read"/>
|
|
|
|
<!--
|
|
RxBytes:
|
|
|
|
Number of received bytes
|
|
-->
|
|
<property name="RxBytes" type="t" access="read"/>
|
|
|
|
</interface>
|
|
</node>
|