summaryrefslogtreecommitdiff
path: root/examples/echo/echo-introspect.xml
blob: 8a4ded567c2dba8d2ea6842b8cf87c1b21b41086 (plain)
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
35
<?xml version="1.0" ?>
<node name="/org/freedesktop/DBus/Examples/Echo">
  <interface name="org.freedesktop.DBus.EchoDemo">
    <method name="Random">
      <arg type="i" name="version" direction="out"/>
    </method>
    <method name="Hello">
      <arg type="s" name="name" direction="in"/>
      <arg type="s" name="greeting" direction="out"/>
    </method>
    <method name="Echo">
      <arg type="v" name="input" direction="in"/>
      <arg type="v" name="output" direction="out"/>
    </method>
    <method name="Cat">
      <arg type="s" name="file" direction="in"/>
      <arg type="ay" name="stream" direction="out"/>
    </method>
    <method name="Sum">
      <arg type="ai" name="ints" direction="in"/>
      <arg type="i" names="sum" direction="out"/>
    </method>
    <signal name="Echoed">
      <arg type="v" name="value"/>
    </signal>
    <method name="Info">
      <arg type="a{ss}" name="info" direction="out"/>
    </method>
    
    <method name="Foo">
      <arg type="a(a(uu)s)" name="array" direction="out" />
    </method>
    
  </interface>
</node>