使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用

在使用开源Camunda流程引擎做二次开发时,网关是必须要接触的。在Camunda的 Modeler工具中提供了4种类型的网关:Exclusive Gateway(独占网关)、Parallel Gateway(并行网关)、Inclusive Gateway(包容性网关)、Event-based Gateway(基于事件的网关),每一个网关都有自己独特的功能,这一篇就先介绍  Parallel Gateway(并行网关)。

Parallel Gateway(并行网关)

The functionality of the parallel gateway is based on the incoming and outgoing sequence flow(s):

* fork: all outgoing sequence flows are followed in parallel, creating one concurrent execution for each sequence flow.

* join: all concurrent executions arriving at the parallel gateway wait at the gateway until an execution has arrived for each of the incoming sequence flows. Then the process continues past the joining gateway.

大概意思是:

并行网关的功能基于传入和传出序列流:

  • 叉子:所有传出序列流都并行遵循,为每个序列流创建一个并发执行。

  • 连接:所有到达并行网关的并发执行都在网关等待,直到每个传入序列流的执行到达。然后这个过程继续通过连接网关。

An important difference with other gateway types is that the parallel gateway does not evaluate conditions. If conditions are defined on the sequence flow connected with the parallel gateway, they are simply ignored.

重要提醒:与其他网关类型的一个重要区别是并行网关不评估条件。如果在与并行网关连接的序列流上定义条件,则会忽略它们。所以并行网关最重要的作用是连接。

流程实例

场景:公司里有请假的流程,先是组长审批,然后是经理审批、人事审批,只有都审批通过了,才会结束。

请假流程图:

使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用_第1张图片

并行网关不需要对节点做参数配置,做直接部署测试。

BPMN流程模型文件:




  
    
      Flow_1dx1ok0
    
    

      Flow_0l0abn3

      Flow_18egz2b

      Flow_0oed7gb

    

    

    

      Flow_0ipw6rw

    

    

      Flow_1dx1ok0

      Flow_0l0abn3

    

    

      Flow_0oed7gb

      Flow_0ww5lb2

    

    

      Flow_18egz2b

      Flow_0aystu5

    

    

    

      Flow_0aystu5

      Flow_0ww5lb2

      Flow_0ipw6rw

    

    

    

    

    

    

  

  

    

      

        

        

      

      

        

        

      

      

        

        

        

      

      

        

        

        

      

      

        

        

        

      

      

        

        

        

      

      

        

        

      

      

        

      

      

        

      

      

        

      

      

        

      

      

        

      

      

        

      

      

        

      

    

  

部署流程并测试验证

流程发起后,第一个节点是组长审批。

使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用_第2张图片

并行网关不需要配置参数,即使配了也会被忽略,所以直接完成此节点后,会同时产生【经理审批】、【人事审批】任务

使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用_第3张图片

使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用_第4张图片  

产生了这2个任务后,只有这2个任务都完成了此流程在会走到结束节点。

使用Camunda流程引擎,关于并行网关(Parallel Gateway)使用_第5张图片

对并行网关就介绍到这里,下一篇是包容性网关介绍

你可能感兴趣的:(流程引擎,jbpm,activiti,spring,boot,业务流程测试)