Salome HOME
Update copyrights
[samples/datafiles.git] / Yacs / Schemas / foreach_LongCorba.xml
1 <!--
2   Copyright (C) 2006-2019  CEA/DEN, EDF R&D
3
4   This library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License, or (at your option) any later version.
8
9   This library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this library; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 -->
21 <proc>
22     <!-- a for each loop with 20 branches with a service node corba -->
23     <!--types -->
24     <sequence name="dblevec" content="double"/>
25
26     <!--nodes -->
27     <inline name="node0" >
28       <script>
29         <code>p1=[3 for i in range(20)]</code>
30       </script>
31       <outport name="p1" type="dblevec"/>
32     </inline>
33
34     <foreach name="b1" nbranch="20" type="double" >
35       <service name="node2" >
36         <ref>corbaname:rir:#test.my_context/Echo.Object</ref>
37         <method>sleepLong</method>
38         <inport name="p1" type="double"/>
39         <outport name="p1" type="double"/>
40       </service>
41     </foreach>
42     <inline name="node1" >
43       <script>
44         <code>print(p1)</code>
45       </script>
46       <inport name="p1" type="dblevec"/>
47     </inline>
48
49     <!--control -->
50     <control> <fromnode>node0</fromnode> <tonode>b1</tonode> </control>
51     <control> <fromnode>b1</fromnode> <tonode>node1</tonode> </control>
52
53     <!--datalink -->
54     <datalink>
55       <fromnode>node0</fromnode><fromport>p1</fromport>
56       <tonode>b1</tonode> <toport>SmplsCollection</toport>
57     </datalink>
58     <datalink>
59       <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
60       <tonode>b1.node2</tonode> <toport>p1</toport>
61     </datalink>
62     <datalink>
63       <fromnode>b1.node2</fromnode><fromport>p1</fromport>
64       <tonode>node1</tonode> <toport>p1</toport>
65     </datalink>
66
67     <!--parameters -->
68
69 </proc>