-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.gdbus.xml
34 lines (32 loc) · 1.12 KB
/
basics.gdbus.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<!--
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg name="data" type="s" direction="out" />
</method>
</interface>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg name="interface" type="s" direction="in" />
<arg name="property" type="s" direction="in" />
<arg name="value" type="s" direction="out" />
</method>
<method name="GetAll">
<arg name="interface" type="s" direction="in" />
<arg name="properties" type="a{sv}" direction="out" />
</method>
</interface>
-->
<interface name="io.mangoh.Testing.Greetable">
<method name="Greet">
<arg name="recipient" type="s" direction="in" />
<arg name="num_times_called" type="q" direction="out" />
</method>
<signal name="TimerExpired">
<arg name="remaining" type="q" />
</signal>
<property name="Greeting" type="s" access="readwrite" />
</interface>
</node>