Show TOC

Background documentationGateways Locate this document in the navigation structure

 

A gateway is used to control the divergence and convergence of sequence flow in a process. It determines decisions, the forking, the merging, and the joining of paths. In the process composer the following gateway types are available:

This graphic is explained in the accompanying text.

Exclusive Choice

The exclusive choice gateway controls the sequence flow between activities. It is like a question that is asked at that point in the process. The question has a defined set of alternative answers, the gates. You define for each gate a condition, which is based on a boolean expression. The expressions use the values of process data to determine which path has to be taken. Each gate has an outgoing sequence flow.

Parallel Split

With the parallel split gateway, you can create parallel flow. You don't need to use the parallel split gateway for parallel flow but with this gateway you can clarify the behavior of complex situations where a parallel flow is required. Each gate of the parallel split gateway must have an associated sequence flow. You cannot define any conditions for this gateway or the sequence flows.

Note Note

If you use the parallel split gateway you have to catch all tokens with a parallel join gateway somewhere in the process.

End of the note.
Uncontrolled Merge

The uncontrolled merge gateway is an exclusive gateway used as a merge for alternative sequence flows. There are a few special situations where you need an uncontrolled merge gateway. For example: An uncontrolled merge gateway merges two alternative sequence flows that were generated by an upstream decision. The alternative sequence flows are merged in preparation for a parallel join gateway that synchronizes a set of parallel sequence flows that were generated further upstream. If the uncontrolled merge gateway would not be used, then there would be four incoming sequence flows into the parallel join gateway. Only three of the four sequence flows could pass a token at one time. The parallel join gateway would wait for the fourth token, which would never arrive. The process would stuck at the point of the parallel join gateway.

Parallel Join

With the parallel join gateway, you can merge parallel paths. You should always couple the parallel split gateway with a parallel join gateway.