jmettraux / ruote-web

this project is discontinued in favour of ruote-web2

This URL has Read+Write access

ruote-web / public / process_definitions / simple_concurrence_1.rb
100644 15 lines (10 sloc) 0.272 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class SimpleConcurrence1 < OpenWFE::ProcessDefinition
 
    description "a concurrence example"
 
    sequence do
        concurrence do
            participant :alpha
            participant :bravo
        end
        participant :alpha # to alpha once again
    end
end