zeebe入门课程10-bpmn元素的支持7(exclusive gateway )
Exclusive Gateway (XOR)独占网关(exclusive gateway)选择其传出序列流之一进行继续。每个序列流都有一个条件,该条件在当前工作流实例的上下文中进行计算。工作流实例采用满足条件的第一个序列流。如果没有满足任何条件,则采用没有条件的默认流。如果网关没有默认流(不推荐),则会停止执行并创建事件。XML Representation<bpm...
·
Exclusive Gateway (XOR)
独占网关(exclusive gateway )选择其传出序列流之一进行继续。每个序列流都有一个条件,该条件在当前工作流实例的上下文中进行计算。工作流实例采用满足条件的第一个序列流。
如果没有满足任何条件,则采用没有条件的默认流。如果网关没有默认流(不推荐),则会停止执行并创建事件。
XML Representation
<bpmn:exclusiveGateway id="exclusiveGateway" default="else" />
<bpmn:sequenceFlow id="priceGreaterThan100" name="totalPrice > 100" sourceRef="exclusiveGateway" targetRef="shipParcelWithInsurance">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">
<![CDATA[ totalPrice > 100 ]]>
</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="else" name="else" sourceRef="exclusiveGateway" targetRef="shipParcel" />
modelr使用如下所示;
zeebe qq交流群群号:856546010
更多推荐
已为社区贡献13条内容
所有评论(0)