You are viewing the documentation for Blueriq 14. Documentation for other versions is available in our documentation directory.
A split node can be used to split the path a process can follow after the split node. Three types of split nodes are offered: exclusive, inclusive and parallel.
Exclusive split
With the use of the exclusive split the path of the process will follow one of the exits which are available . The alternatives will be inferred from the upper till the lowest. The first path which is TRUE will be followed.
- The expression makes use of the profile in the process module, the content will be filled using mapping
- The expression which will be used for the alternative must result in a boolean variable.
- A join node is expected to convert the paths
- An exclusive split needs one alternative that infers in TRUE, otherwise the process will stop
Result in ths example:
Value | Path |
---|---|
800 | Exit2 |
950 | Exit1 |
1100 | Exit1 |
At runtime, is possible to trace split nodes: Process traceability
Inclusive split
With the use of the inclusive split the path of the process will follow one or more of the exits which are available . The alternatives will be inferred from the upper till the lowest. All the paths of which the alternatives infer to TRUE, will be followed.
- The expression makes use of the profile in the process module, the content will be filled using mapping
- The expression which will be used for the alternative must result in a boolean variable.
- An inclusive split needs at least one alternative that infers in TRUE, otherwise the process will stop
- A join node is expected to convert the paths
Result in this example:
Value | Path |
---|---|
800 | Exit2 |
950 | Exit1 and Exit2 |
1100 | Exit1 |
At runtime, is possible to trace split nodes: Process traceability
Parallel split
With the use of the parallel split the path of the process will follow all of the exits which are available.
- A parallel split needs a parallel join before ending a process.
At runtime, is possible to trace split nodes: Process traceability
2 Comments
Johan Klaver
In the bullets for inclusive split, there is talk about exclusive split, this should be corrected.
Unknown User (m.schadd)
Thanks! Fixed.