-
Notifications
You must be signed in to change notification settings - Fork 7
/
ex-topo-infinite.xml.in
45 lines (38 loc) · 1.63 KB
/
ex-topo-infinite.xml.in
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
36
37
38
39
40
41
42
43
44
45
<topology name="EPNExample">
<property name="fmqchan_data1" />
<property name="fmqchan_data2" />
<decltask name="Sampler">
<exe>odc-ex-sampler --color false --channel-config name=data1,type=push,method=bind --rate 100 -P odc --severity trace</exe>
<env reachable="false">@CMAKE_INSTALL_PREFIX@/@PROJECT_INSTALL_BINDIR@/odc-ex-env.sh</env>
<properties>
<name access="write">fmqchan_data1</name>
</properties>
</decltask>
<decltask name="Processor">
<exe>odc-ex-processor --color false --channel-config name=data1,type=pull,method=connect name=data2,type=push,method=connect -P odc --severity trace</exe>
<env reachable="false">@CMAKE_INSTALL_PREFIX@/@PROJECT_INSTALL_BINDIR@/odc-ex-env.sh</env>
<properties>
<name access="read">fmqchan_data1</name>
<name access="read">fmqchan_data2</name>
</properties>
</decltask>
<decltask name="Sink">
<exe>odc-ex-sink --color false --channel-config name=data2,type=pull,method=bind -P odc --severity trace</exe>
<env reachable="false">@CMAKE_INSTALL_PREFIX@/@PROJECT_INSTALL_BINDIR@/odc-ex-env.sh</env>
<properties>
<name access="write">fmqchan_data2</name>
</properties>
</decltask>
<declcollection name="EPNCollection">
<tasks>
<name>Sampler</name>
<name>Sink</name>
<name n="10">Processor</name>
</tasks>
</declcollection>
<main name="main">
<group name="EPNGroup" n="@ODC_VAR_EXAMPLE_N@">
<collection>EPNCollection</collection>
</group>
</main>
</topology>