@nanobpm/nano-workforce 0.120.0 → 0.120.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/app/capabilityNeed.test.ts +4 -2
- package/app/capabilityNeed.ts +3 -1
- package/app/deliveryGraphCompiler.test.ts +72 -44
- package/app/deliveryGraphCompiler.ts +121 -19
- package/app/deliveryGraphRun.test.ts +2 -2
- package/app/deliveryRunner.test.ts +29 -17
- package/app/deliveryRunner.ts +31 -10
- package/app/feature.test.ts +3 -1
- package/app/feature.ts +9 -0
- package/app/featureReadiness.test.ts +7 -4
- package/app/featureReadiness.ts +8 -3
- package/app/plan.test.ts +1 -1
- package/app/plan.ts +9 -0
- package/app/planFanoutPreflight.test.ts +12 -12
- package/app/planLowering.test.ts +2 -0
- package/app/planLowering.ts +7 -2
- package/app/pollUserTasks.test.ts +49 -1
- package/app/readiness.test.ts +9 -0
- package/app/readiness.ts +25 -0
- package/app/service.ts +24 -6
- package/biome.json +24 -1
- package/e2e/delivery-graph.e2e.ts +2 -1
- package/e2e/feature-preflight.e2e.ts +2 -0
- package/e2e/inter-epic-dependency.e2e.ts +7 -1
- package/e2e/plan-fanout-preflight.e2e.ts +2 -0
- package/e2e/readiness-gate.e2e.ts +27 -11
- package/operations/compileDeliveryGraph.test.ts +3 -0
- package/operations/compileDeliveryGraph.ts +1 -1
- package/operations/dispatchDeliveryGraph.ts +1 -1
- package/operations/previewDeliveryGraph.ts +1 -1
- package/operations/startDeliveryGraph.ts +1 -1
- package/package.json +3 -2
- package/resources/processes/feature.bpmn +168 -52
- package/resources/processes/plan-fanout.bpmn +168 -52
- package/resources/processes/readiness-gate.bpmn +194 -84
- package/workers/readiness-probe/worker.test.ts +82 -238
- package/workers/readiness-probe/worker.ts +46 -128
|
@@ -39,23 +39,75 @@
|
|
|
39
39
|
<bpmn:startEvent id="pf_start" name="Awaiting readiness">
|
|
40
40
|
<bpmn:outgoing>pf_toProbe</bpmn:outgoing>
|
|
41
41
|
</bpmn:startEvent>
|
|
42
|
-
<bpmn:
|
|
42
|
+
<bpmn:subProcess id="preflight-probe-loop" name="Probe readiness loop">
|
|
43
43
|
<bpmn:extensionElements>
|
|
44
|
-
<zeebe:
|
|
45
|
-
|
|
46
|
-
<zeebe:
|
|
47
|
-
<zeebe:
|
|
48
|
-
|
|
44
|
+
<zeebe:ioMapping>
|
|
45
|
+
<zeebe:output source="=ready" target="ready" />
|
|
46
|
+
<zeebe:output source="=if (is defined(detail)) then detail else null" target="detail" />
|
|
47
|
+
<zeebe:output source="=if (is defined(resolvedArtifact)) then resolvedArtifact else null" target="resolvedArtifact" />
|
|
48
|
+
<zeebe:output source="=if (is defined(mergedSha)) then mergedSha else null" target="mergedSha" />
|
|
49
|
+
</zeebe:ioMapping>
|
|
49
50
|
</bpmn:extensionElements>
|
|
50
51
|
<bpmn:incoming>pf_toProbe</bpmn:incoming>
|
|
51
52
|
<bpmn:outgoing>pf_probed</bpmn:outgoing>
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
<bpmn:startEvent id="pf_loop_start" name="Start probe loop">
|
|
54
|
+
<bpmn:outgoing>pf_loop_toProbe</bpmn:outgoing>
|
|
55
|
+
</bpmn:startEvent>
|
|
56
|
+
<bpmn:serviceTask id="preflight-probe" name="Probe readiness">
|
|
57
|
+
<bpmn:extensionElements>
|
|
58
|
+
<zeebe:taskDefinition type="pr.readiness-probe" />
|
|
59
|
+
<zeebe:properties>
|
|
60
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
|
|
61
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
|
|
62
|
+
</zeebe:properties>
|
|
63
|
+
</bpmn:extensionElements>
|
|
64
|
+
<bpmn:incoming>pf_loop_toProbe</bpmn:incoming>
|
|
65
|
+
<bpmn:incoming>pf_pollBack</bpmn:incoming>
|
|
66
|
+
<bpmn:outgoing>pf_loop_probed</bpmn:outgoing>
|
|
67
|
+
</bpmn:serviceTask>
|
|
68
|
+
<bpmn:exclusiveGateway id="pf_loop_gw" name="ready?" default="pf_notReady">
|
|
69
|
+
<bpmn:incoming>pf_loop_probed</bpmn:incoming>
|
|
70
|
+
<bpmn:outgoing>pf_loop_ready</bpmn:outgoing>
|
|
71
|
+
<bpmn:outgoing>pf_notReady</bpmn:outgoing>
|
|
72
|
+
</bpmn:exclusiveGateway>
|
|
73
|
+
<bpmn:intermediateCatchEvent id="pf_wait_poll" name="Wait poll interval">
|
|
74
|
+
<bpmn:incoming>pf_notReady</bpmn:incoming>
|
|
75
|
+
<bpmn:outgoing>pf_pollBack</bpmn:outgoing>
|
|
76
|
+
<bpmn:timerEventDefinition id="ted_pf_probe_poll">
|
|
77
|
+
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probePollEvery</bpmn:timeDuration>
|
|
78
|
+
</bpmn:timerEventDefinition>
|
|
79
|
+
</bpmn:intermediateCatchEvent>
|
|
80
|
+
<bpmn:endEvent id="pf_loop_end" name="Probe ready">
|
|
81
|
+
<bpmn:incoming>pf_loop_ready</bpmn:incoming>
|
|
82
|
+
</bpmn:endEvent>
|
|
83
|
+
<bpmn:sequenceFlow id="pf_loop_toProbe" sourceRef="pf_loop_start" targetRef="preflight-probe" />
|
|
84
|
+
<bpmn:sequenceFlow id="pf_loop_probed" sourceRef="preflight-probe" targetRef="pf_loop_gw" />
|
|
85
|
+
<bpmn:sequenceFlow id="pf_loop_ready" name="ready" sourceRef="pf_loop_gw" targetRef="pf_loop_end">
|
|
86
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=ready = true</bpmn:conditionExpression>
|
|
87
|
+
</bpmn:sequenceFlow>
|
|
88
|
+
<bpmn:sequenceFlow id="pf_notReady" name="not ready" sourceRef="pf_loop_gw" targetRef="pf_wait_poll" />
|
|
89
|
+
<bpmn:sequenceFlow id="pf_pollBack" sourceRef="pf_wait_poll" targetRef="preflight-probe" />
|
|
90
|
+
</bpmn:subProcess>
|
|
91
|
+
<bpmn:boundaryEvent id="be_pf_probe_timeout" name="Probe timed out" attachedToRef="preflight-probe-loop">
|
|
54
92
|
<bpmn:outgoing>pf_probeTimedOut</bpmn:outgoing>
|
|
55
93
|
<bpmn:timerEventDefinition id="ted_pf_probe_timeout">
|
|
56
94
|
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probeTimeout</bpmn:timeDuration>
|
|
57
95
|
</bpmn:timerEventDefinition>
|
|
58
96
|
</bpmn:boundaryEvent>
|
|
97
|
+
<bpmn:serviceTask id="preflight-probe-last-attempt" name="Probe readiness (last attempt)">
|
|
98
|
+
<bpmn:extensionElements>
|
|
99
|
+
<zeebe:taskDefinition type="pr.readiness-probe" />
|
|
100
|
+
<zeebe:properties>
|
|
101
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
|
|
102
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
|
|
103
|
+
</zeebe:properties>
|
|
104
|
+
<zeebe:ioMapping>
|
|
105
|
+
<zeebe:input source="=true" target="lastAttempt" />
|
|
106
|
+
</zeebe:ioMapping>
|
|
107
|
+
</bpmn:extensionElements>
|
|
108
|
+
<bpmn:incoming>pf_probeTimedOut</bpmn:incoming>
|
|
109
|
+
<bpmn:outgoing>pf_lastAttemptDone</bpmn:outgoing>
|
|
110
|
+
</bpmn:serviceTask>
|
|
59
111
|
<bpmn:exclusiveGateway id="pf_gw" name="upstream ready?" default="pf_escalate">
|
|
60
112
|
<bpmn:incoming>pf_probed</bpmn:incoming>
|
|
61
113
|
<bpmn:outgoing>pf_ready</bpmn:outgoing>
|
|
@@ -68,7 +120,6 @@
|
|
|
68
120
|
<zeebe:assignmentDefinition candidateGroups="operators" />
|
|
69
121
|
</bpmn:extensionElements>
|
|
70
122
|
<bpmn:incoming>pf_escalate</bpmn:incoming>
|
|
71
|
-
<bpmn:incoming>pf_probeTimedOut</bpmn:incoming>
|
|
72
123
|
<bpmn:outgoing>pf_toResolution</bpmn:outgoing>
|
|
73
124
|
</bpmn:userTask>
|
|
74
125
|
<bpmn:boundaryEvent id="be_pf_sla" name="SLA elapsed" attachedToRef="readiness-escalation-pf">
|
|
@@ -88,13 +139,14 @@
|
|
|
88
139
|
<bpmn:incoming>pf_abandon</bpmn:incoming>
|
|
89
140
|
<bpmn:incoming>pf_sla</bpmn:incoming>
|
|
90
141
|
</bpmn:endEvent>
|
|
91
|
-
<bpmn:sequenceFlow id="pf_toProbe" sourceRef="pf_start" targetRef="preflight-probe" />
|
|
92
|
-
<bpmn:sequenceFlow id="pf_probed" sourceRef="preflight-probe" targetRef="pf_gw" />
|
|
142
|
+
<bpmn:sequenceFlow id="pf_toProbe" sourceRef="pf_start" targetRef="preflight-probe-loop" />
|
|
143
|
+
<bpmn:sequenceFlow id="pf_probed" sourceRef="preflight-probe-loop" targetRef="pf_gw" />
|
|
93
144
|
<bpmn:sequenceFlow id="pf_ready" name="ready" sourceRef="pf_gw" targetRef="pf_end">
|
|
94
145
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=ready = true</bpmn:conditionExpression>
|
|
95
146
|
</bpmn:sequenceFlow>
|
|
96
147
|
<bpmn:sequenceFlow id="pf_escalate" name="stalled" sourceRef="pf_gw" targetRef="readiness-escalation-pf" />
|
|
97
|
-
<bpmn:sequenceFlow id="pf_probeTimedOut" name="timed out" sourceRef="be_pf_probe_timeout" targetRef="
|
|
148
|
+
<bpmn:sequenceFlow id="pf_probeTimedOut" name="timed out" sourceRef="be_pf_probe_timeout" targetRef="preflight-probe-last-attempt" />
|
|
149
|
+
<bpmn:sequenceFlow id="pf_lastAttemptDone" sourceRef="preflight-probe-last-attempt" targetRef="pf_gw" />
|
|
98
150
|
<bpmn:sequenceFlow id="pf_toResolution" sourceRef="readiness-escalation-pf" targetRef="pf_gw_res" />
|
|
99
151
|
<bpmn:sequenceFlow id="pf_proceed" name="acknowledge" sourceRef="pf_gw_res" targetRef="pf_end" />
|
|
100
152
|
<bpmn:sequenceFlow id="pf_abandon" name="abandon" sourceRef="pf_gw_res" targetRef="pf_end">
|
|
@@ -473,40 +525,43 @@
|
|
|
473
525
|
<dc:Bounds x="65" y="143" width="67" height="28" />
|
|
474
526
|
</bpmndi:BPMNLabel>
|
|
475
527
|
</bpmndi:BPMNShape>
|
|
476
|
-
<bpmndi:BPMNShape id="BPMNShape_preflight-probe" bpmnElement="preflight-probe">
|
|
528
|
+
<bpmndi:BPMNShape id="BPMNShape_preflight-probe-loop" bpmnElement="preflight-probe-loop">
|
|
477
529
|
<dc:Bounds x="216" y="80" width="100" height="80" />
|
|
478
530
|
</bpmndi:BPMNShape>
|
|
531
|
+
<bpmndi:BPMNShape id="BPMNShape_preflight-probe-last-attempt" bpmnElement="preflight-probe-last-attempt">
|
|
532
|
+
<dc:Bounds x="416" y="240" width="100" height="80" />
|
|
533
|
+
</bpmndi:BPMNShape>
|
|
479
534
|
<bpmndi:BPMNShape id="BPMNShape_pf_gw" bpmnElement="pf_gw" isMarkerVisible="true">
|
|
480
|
-
<dc:Bounds x="
|
|
535
|
+
<dc:Bounds x="616" y="95" width="50" height="50" />
|
|
481
536
|
<bpmndi:BPMNLabel>
|
|
482
|
-
<dc:Bounds x="
|
|
537
|
+
<dc:Bounds x="610" y="62" width="63" height="28" />
|
|
483
538
|
</bpmndi:BPMNLabel>
|
|
484
539
|
</bpmndi:BPMNShape>
|
|
485
540
|
<bpmndi:BPMNShape id="BPMNShape_readiness-escalation-pf" bpmnElement="readiness-escalation-pf">
|
|
486
|
-
<dc:Bounds x="
|
|
541
|
+
<dc:Bounds x="766" y="80" width="100" height="80" />
|
|
487
542
|
</bpmndi:BPMNShape>
|
|
488
543
|
<bpmndi:BPMNShape id="BPMNShape_pf_gw_res" bpmnElement="pf_gw_res" isMarkerVisible="true">
|
|
489
|
-
<dc:Bounds x="
|
|
544
|
+
<dc:Bounds x="966" y="95" width="50" height="50" />
|
|
490
545
|
<bpmndi:BPMNLabel>
|
|
491
|
-
<dc:Bounds x="
|
|
546
|
+
<dc:Bounds x="951" y="76" width="81" height="14" />
|
|
492
547
|
</bpmndi:BPMNLabel>
|
|
493
548
|
</bpmndi:BPMNShape>
|
|
494
549
|
<bpmndi:BPMNShape id="BPMNShape_pf_end" bpmnElement="pf_end">
|
|
495
|
-
<dc:Bounds x="
|
|
550
|
+
<dc:Bounds x="1116" y="102" width="36" height="36" />
|
|
496
551
|
<bpmndi:BPMNLabel>
|
|
497
|
-
<dc:Bounds x="
|
|
552
|
+
<dc:Bounds x="1100" y="69" width="69" height="28" />
|
|
498
553
|
</bpmndi:BPMNLabel>
|
|
499
554
|
</bpmndi:BPMNShape>
|
|
500
555
|
<bpmndi:BPMNShape id="BPMNShape_be_pf_probe_timeout" bpmnElement="be_pf_probe_timeout">
|
|
501
556
|
<dc:Bounds x="248" y="142" width="36" height="36" />
|
|
502
557
|
<bpmndi:BPMNLabel>
|
|
503
|
-
<dc:Bounds x="
|
|
558
|
+
<dc:Bounds x="165" y="183" width="83" height="28" />
|
|
504
559
|
</bpmndi:BPMNLabel>
|
|
505
560
|
</bpmndi:BPMNShape>
|
|
506
561
|
<bpmndi:BPMNShape id="BPMNShape_be_pf_sla" bpmnElement="be_pf_sla">
|
|
507
|
-
<dc:Bounds x="
|
|
562
|
+
<dc:Bounds x="798" y="142" width="36" height="36" />
|
|
508
563
|
<bpmndi:BPMNLabel>
|
|
509
|
-
<dc:Bounds x="
|
|
564
|
+
<dc:Bounds x="774" y="223" width="84" height="14" />
|
|
510
565
|
</bpmndi:BPMNLabel>
|
|
511
566
|
</bpmndi:BPMNShape>
|
|
512
567
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_toProbe" bpmnElement="pf_toProbe">
|
|
@@ -515,63 +570,124 @@
|
|
|
515
570
|
</bpmndi:BPMNEdge>
|
|
516
571
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_probed" bpmnElement="pf_probed">
|
|
517
572
|
<di:waypoint x="316" y="120" />
|
|
518
|
-
<di:waypoint x="
|
|
573
|
+
<di:waypoint x="616" y="120" />
|
|
519
574
|
</bpmndi:BPMNEdge>
|
|
520
575
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_escalate" bpmnElement="pf_escalate">
|
|
521
|
-
<di:waypoint x="
|
|
522
|
-
<di:waypoint x="
|
|
576
|
+
<di:waypoint x="666" y="120" />
|
|
577
|
+
<di:waypoint x="766" y="120" />
|
|
523
578
|
<bpmndi:BPMNLabel>
|
|
524
|
-
<dc:Bounds x="
|
|
579
|
+
<dc:Bounds x="690" y="98" width="53" height="14" />
|
|
525
580
|
</bpmndi:BPMNLabel>
|
|
526
581
|
</bpmndi:BPMNEdge>
|
|
527
582
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_toResolution" bpmnElement="pf_toResolution">
|
|
528
|
-
<di:waypoint x="
|
|
529
|
-
<di:waypoint x="
|
|
583
|
+
<di:waypoint x="866" y="120" />
|
|
584
|
+
<di:waypoint x="966" y="120" />
|
|
530
585
|
</bpmndi:BPMNEdge>
|
|
531
586
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_proceed" bpmnElement="pf_proceed">
|
|
532
|
-
<di:waypoint x="
|
|
533
|
-
<di:waypoint x="
|
|
587
|
+
<di:waypoint x="1016" y="120" />
|
|
588
|
+
<di:waypoint x="1116" y="120" />
|
|
534
589
|
<bpmndi:BPMNLabel>
|
|
535
|
-
<dc:Bounds x="
|
|
590
|
+
<dc:Bounds x="1024" y="128" width="84" height="14" />
|
|
536
591
|
</bpmndi:BPMNLabel>
|
|
537
592
|
</bpmndi:BPMNEdge>
|
|
538
593
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_ready" bpmnElement="pf_ready">
|
|
539
|
-
<di:waypoint x="
|
|
540
|
-
<di:waypoint x="
|
|
541
|
-
<di:waypoint x="
|
|
542
|
-
<di:waypoint x="
|
|
594
|
+
<di:waypoint x="641" y="145" />
|
|
595
|
+
<di:waypoint x="641" y="200" />
|
|
596
|
+
<di:waypoint x="1134" y="200" />
|
|
597
|
+
<di:waypoint x="1134" y="138" />
|
|
543
598
|
<bpmndi:BPMNLabel>
|
|
544
|
-
<dc:Bounds x="
|
|
599
|
+
<dc:Bounds x="868" y="178" width="39" height="14" />
|
|
545
600
|
</bpmndi:BPMNLabel>
|
|
546
601
|
</bpmndi:BPMNEdge>
|
|
602
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_lastAttemptDone" bpmnElement="pf_lastAttemptDone">
|
|
603
|
+
<di:waypoint x="466" y="240" />
|
|
604
|
+
<di:waypoint x="466" y="120" />
|
|
605
|
+
<di:waypoint x="616" y="120" />
|
|
606
|
+
</bpmndi:BPMNEdge>
|
|
547
607
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_abandon" bpmnElement="pf_abandon">
|
|
548
|
-
<di:waypoint x="
|
|
549
|
-
<di:waypoint x="
|
|
608
|
+
<di:waypoint x="1016" y="120" />
|
|
609
|
+
<di:waypoint x="1116" y="120" />
|
|
550
610
|
<bpmndi:BPMNLabel>
|
|
551
|
-
<dc:Bounds x="
|
|
611
|
+
<dc:Bounds x="1040" y="158" width="53" height="14" />
|
|
552
612
|
</bpmndi:BPMNLabel>
|
|
553
613
|
</bpmndi:BPMNEdge>
|
|
554
614
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_probeTimedOut" bpmnElement="pf_probeTimedOut">
|
|
555
615
|
<di:waypoint x="266" y="178" />
|
|
556
|
-
<di:waypoint x="266" y="
|
|
557
|
-
<di:waypoint x="
|
|
558
|
-
<di:waypoint x="336" y="82" />
|
|
559
|
-
<di:waypoint x="546" y="82" />
|
|
560
|
-
<di:waypoint x="546" y="120" />
|
|
561
|
-
<di:waypoint x="566" y="120" />
|
|
616
|
+
<di:waypoint x="266" y="280" />
|
|
617
|
+
<di:waypoint x="416" y="280" />
|
|
562
618
|
<bpmndi:BPMNLabel>
|
|
563
|
-
<dc:Bounds x="
|
|
619
|
+
<dc:Bounds x="271" y="222" width="67" height="14" />
|
|
564
620
|
</bpmndi:BPMNLabel>
|
|
565
621
|
</bpmndi:BPMNEdge>
|
|
566
622
|
<bpmndi:BPMNEdge id="BPMNEdge_pf_sla" bpmnElement="pf_sla">
|
|
567
|
-
<di:waypoint x="
|
|
568
|
-
<di:waypoint x="
|
|
569
|
-
<di:waypoint x="
|
|
570
|
-
<di:waypoint x="
|
|
623
|
+
<di:waypoint x="816" y="178" />
|
|
624
|
+
<di:waypoint x="816" y="198" />
|
|
625
|
+
<di:waypoint x="1134" y="198" />
|
|
626
|
+
<di:waypoint x="1134" y="138" />
|
|
627
|
+
<bpmndi:BPMNLabel>
|
|
628
|
+
<dc:Bounds x="931" y="165" width="88" height="28" />
|
|
629
|
+
</bpmndi:BPMNLabel>
|
|
630
|
+
</bpmndi:BPMNEdge>
|
|
631
|
+
</bpmndi:BPMNPlane>
|
|
632
|
+
</bpmndi:BPMNDiagram>
|
|
633
|
+
<bpmndi:BPMNDiagram id="BPMNDiagram_preflight-probe-loop">
|
|
634
|
+
<bpmndi:BPMNPlane id="BPMNPlane_preflight-probe-loop" bpmnElement="preflight-probe-loop">
|
|
635
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_loop_start" bpmnElement="pf_loop_start">
|
|
636
|
+
<dc:Bounds x="80" y="102" width="36" height="36" />
|
|
637
|
+
<bpmndi:BPMNLabel>
|
|
638
|
+
<dc:Bounds x="58" y="143" width="80" height="28" />
|
|
639
|
+
</bpmndi:BPMNLabel>
|
|
640
|
+
</bpmndi:BPMNShape>
|
|
641
|
+
<bpmndi:BPMNShape id="BPMNShape_preflight-probe" bpmnElement="preflight-probe">
|
|
642
|
+
<dc:Bounds x="216" y="80" width="100" height="80" />
|
|
643
|
+
</bpmndi:BPMNShape>
|
|
644
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_loop_gw" bpmnElement="pf_loop_gw" isMarkerVisible="true">
|
|
645
|
+
<dc:Bounds x="416" y="95" width="50" height="50" />
|
|
646
|
+
<bpmndi:BPMNLabel>
|
|
647
|
+
<dc:Bounds x="418" y="76" width="46" height="14" />
|
|
648
|
+
</bpmndi:BPMNLabel>
|
|
649
|
+
</bpmndi:BPMNShape>
|
|
650
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_wait_poll" bpmnElement="pf_wait_poll">
|
|
651
|
+
<dc:Bounds x="566" y="262" width="36" height="36" />
|
|
652
|
+
<bpmndi:BPMNLabel>
|
|
653
|
+
<dc:Bounds x="550" y="229" width="68" height="28" />
|
|
654
|
+
</bpmndi:BPMNLabel>
|
|
655
|
+
</bpmndi:BPMNShape>
|
|
656
|
+
<bpmndi:BPMNShape id="BPMNShape_pf_loop_end" bpmnElement="pf_loop_end">
|
|
657
|
+
<dc:Bounds x="566" y="102" width="36" height="36" />
|
|
658
|
+
<bpmndi:BPMNLabel>
|
|
659
|
+
<dc:Bounds x="544" y="143" width="80" height="14" />
|
|
660
|
+
</bpmndi:BPMNLabel>
|
|
661
|
+
</bpmndi:BPMNShape>
|
|
662
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_loop_toProbe" bpmnElement="pf_loop_toProbe">
|
|
663
|
+
<di:waypoint x="116" y="120" />
|
|
664
|
+
<di:waypoint x="216" y="120" />
|
|
665
|
+
</bpmndi:BPMNEdge>
|
|
666
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_loop_probed" bpmnElement="pf_loop_probed">
|
|
667
|
+
<di:waypoint x="316" y="120" />
|
|
668
|
+
<di:waypoint x="416" y="120" />
|
|
669
|
+
</bpmndi:BPMNEdge>
|
|
670
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_loop_ready" bpmnElement="pf_loop_ready">
|
|
671
|
+
<di:waypoint x="466" y="120" />
|
|
672
|
+
<di:waypoint x="566" y="120" />
|
|
571
673
|
<bpmndi:BPMNLabel>
|
|
572
|
-
<dc:Bounds x="
|
|
674
|
+
<dc:Bounds x="497" y="98" width="39" height="14" />
|
|
573
675
|
</bpmndi:BPMNLabel>
|
|
574
676
|
</bpmndi:BPMNEdge>
|
|
677
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_notReady" bpmnElement="pf_notReady">
|
|
678
|
+
<di:waypoint x="441" y="145" />
|
|
679
|
+
<di:waypoint x="441" y="280" />
|
|
680
|
+
<di:waypoint x="566" y="280" />
|
|
681
|
+
<bpmndi:BPMNLabel>
|
|
682
|
+
<dc:Bounds x="446" y="206" width="64" height="14" />
|
|
683
|
+
</bpmndi:BPMNLabel>
|
|
684
|
+
</bpmndi:BPMNEdge>
|
|
685
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pf_pollBack" bpmnElement="pf_pollBack">
|
|
686
|
+
<di:waypoint x="584" y="298" />
|
|
687
|
+
<di:waypoint x="584" y="318" />
|
|
688
|
+
<di:waypoint x="266" y="318" />
|
|
689
|
+
<di:waypoint x="266" y="160" />
|
|
690
|
+
</bpmndi:BPMNEdge>
|
|
575
691
|
</bpmndi:BPMNPlane>
|
|
576
692
|
</bpmndi:BPMNDiagram>
|
|
577
693
|
</bpmn:definitions>
|