@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
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
<nano:shape id="ReadinessProbeIn" name="Readiness probe — input">
|
|
41
41
|
<nano:extend name="gateKey" type="string" />
|
|
42
42
|
<nano:extend name="probeTimeout" type="string" />
|
|
43
|
+
<nano:extend name="probePollEvery" type="string" />
|
|
44
|
+
<nano:extend name="lastAttempt" type="boolean" optional="true" />
|
|
43
45
|
<nano:extend name="onTimeout" type="string" optional="true" />
|
|
44
46
|
<nano:reference name="probe" ref="ReadinessProbe" />
|
|
45
47
|
</nano:shape>
|
|
@@ -65,26 +67,70 @@
|
|
|
65
67
|
<bpmn:outgoing>f_toProbe</bpmn:outgoing>
|
|
66
68
|
<bpmn:outgoing>f_toGate</bpmn:outgoing>
|
|
67
69
|
</bpmn:parallelGateway>
|
|
68
|
-
<bpmn:
|
|
70
|
+
<bpmn:subProcess id="probe-loop" name="Probe readiness loop">
|
|
71
|
+
<bpmn:incoming>f_toProbe</bpmn:incoming>
|
|
72
|
+
<bpmn:outgoing>f_probed</bpmn:outgoing>
|
|
73
|
+
<bpmn:startEvent id="probe-loop-start" name="Start probe loop">
|
|
74
|
+
<bpmn:outgoing>pl_toProbe</bpmn:outgoing>
|
|
75
|
+
</bpmn:startEvent>
|
|
76
|
+
<bpmn:serviceTask id="probe" name="Probe readiness">
|
|
77
|
+
<bpmn:extensionElements>
|
|
78
|
+
<zeebe:taskDefinition type="pr.readiness-probe" />
|
|
79
|
+
<zeebe:properties>
|
|
80
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
|
|
81
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
|
|
82
|
+
</zeebe:properties>
|
|
83
|
+
</bpmn:extensionElements>
|
|
84
|
+
<bpmn:incoming>pl_toProbe</bpmn:incoming>
|
|
85
|
+
<bpmn:incoming>pl_pollBack</bpmn:incoming>
|
|
86
|
+
<bpmn:outgoing>pl_probed</bpmn:outgoing>
|
|
87
|
+
</bpmn:serviceTask>
|
|
88
|
+
<bpmn:exclusiveGateway id="probe-ready-gw" name="ready?" default="pl_notReady">
|
|
89
|
+
<bpmn:incoming>pl_probed</bpmn:incoming>
|
|
90
|
+
<bpmn:outgoing>pl_ready</bpmn:outgoing>
|
|
91
|
+
<bpmn:outgoing>pl_notReady</bpmn:outgoing>
|
|
92
|
+
</bpmn:exclusiveGateway>
|
|
93
|
+
<bpmn:intermediateCatchEvent id="wait-poll" name="Wait poll interval">
|
|
94
|
+
<bpmn:incoming>pl_notReady</bpmn:incoming>
|
|
95
|
+
<bpmn:outgoing>pl_pollBack</bpmn:outgoing>
|
|
96
|
+
<bpmn:timerEventDefinition id="ted_probePollEvery">
|
|
97
|
+
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probePollEvery</bpmn:timeDuration>
|
|
98
|
+
</bpmn:timerEventDefinition>
|
|
99
|
+
</bpmn:intermediateCatchEvent>
|
|
100
|
+
<bpmn:endEvent id="probe-loop-end" name="Probe ready">
|
|
101
|
+
<bpmn:incoming>pl_ready</bpmn:incoming>
|
|
102
|
+
</bpmn:endEvent>
|
|
103
|
+
<bpmn:sequenceFlow id="pl_toProbe" sourceRef="probe-loop-start" targetRef="probe" />
|
|
104
|
+
<bpmn:sequenceFlow id="pl_probed" sourceRef="probe" targetRef="probe-ready-gw" />
|
|
105
|
+
<bpmn:sequenceFlow id="pl_ready" name="ready" sourceRef="probe-ready-gw" targetRef="probe-loop-end">
|
|
106
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=ready = true</bpmn:conditionExpression>
|
|
107
|
+
</bpmn:sequenceFlow>
|
|
108
|
+
<bpmn:sequenceFlow id="pl_notReady" name="not ready" sourceRef="probe-ready-gw" targetRef="wait-poll" />
|
|
109
|
+
<bpmn:sequenceFlow id="pl_pollBack" sourceRef="wait-poll" targetRef="probe" />
|
|
110
|
+
</bpmn:subProcess>
|
|
111
|
+
<bpmn:boundaryEvent id="probe-timeout" name="Gate timed out" attachedToRef="probe-loop">
|
|
112
|
+
<bpmn:outgoing>f_probeTimeout</bpmn:outgoing>
|
|
113
|
+
<bpmn:timerEventDefinition id="ted_probeTimeout">
|
|
114
|
+
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probeTimeout</bpmn:timeDuration>
|
|
115
|
+
</bpmn:timerEventDefinition>
|
|
116
|
+
</bpmn:boundaryEvent>
|
|
117
|
+
<bpmn:serviceTask id="probe-last-attempt" name="Probe readiness (last attempt)">
|
|
69
118
|
<bpmn:extensionElements>
|
|
70
119
|
<zeebe:taskDefinition type="pr.readiness-probe" />
|
|
71
120
|
<zeebe:properties>
|
|
72
121
|
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
|
|
73
122
|
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
|
|
74
123
|
</zeebe:properties>
|
|
124
|
+
<zeebe:ioMapping>
|
|
125
|
+
<zeebe:input source="=true" target="lastAttempt" />
|
|
126
|
+
</zeebe:ioMapping>
|
|
75
127
|
</bpmn:extensionElements>
|
|
76
|
-
<bpmn:incoming>
|
|
77
|
-
<bpmn:outgoing>
|
|
128
|
+
<bpmn:incoming>f_probeTimeout</bpmn:incoming>
|
|
129
|
+
<bpmn:outgoing>f_lastAttemptDone</bpmn:outgoing>
|
|
78
130
|
</bpmn:serviceTask>
|
|
79
|
-
<bpmn:boundaryEvent id="probe-timeout" name="Gate timed out" attachedToRef="probe">
|
|
80
|
-
<bpmn:outgoing>f_probeTimeout</bpmn:outgoing>
|
|
81
|
-
<bpmn:timerEventDefinition id="ted_probeTimeout">
|
|
82
|
-
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probeTimeout</bpmn:timeDuration>
|
|
83
|
-
</bpmn:timerEventDefinition>
|
|
84
|
-
</bpmn:boundaryEvent>
|
|
85
131
|
<bpmn:endEvent id="probe-done" name="Probe settled">
|
|
86
132
|
<bpmn:incoming>f_probed</bpmn:incoming>
|
|
87
|
-
<bpmn:incoming>
|
|
133
|
+
<bpmn:incoming>f_lastAttemptDone</bpmn:incoming>
|
|
88
134
|
</bpmn:endEvent>
|
|
89
135
|
<bpmn:eventBasedGateway id="gw-gate" name="ready or timeout?">
|
|
90
136
|
<bpmn:incoming>f_toGate</bpmn:incoming>
|
|
@@ -157,10 +203,11 @@
|
|
|
157
203
|
<bpmn:incoming>f_continue</bpmn:incoming>
|
|
158
204
|
</bpmn:endEvent>
|
|
159
205
|
<bpmn:sequenceFlow id="f_start" sourceRef="Start" targetRef="fork" />
|
|
160
|
-
<bpmn:sequenceFlow id="f_toProbe" sourceRef="fork" targetRef="probe" />
|
|
206
|
+
<bpmn:sequenceFlow id="f_toProbe" sourceRef="fork" targetRef="probe-loop" />
|
|
161
207
|
<bpmn:sequenceFlow id="f_toGate" sourceRef="fork" targetRef="gw-gate" />
|
|
162
|
-
<bpmn:sequenceFlow id="f_probed" sourceRef="probe" targetRef="probe-done" />
|
|
163
|
-
<bpmn:sequenceFlow id="f_probeTimeout" sourceRef="probe-timeout" targetRef="probe-
|
|
208
|
+
<bpmn:sequenceFlow id="f_probed" sourceRef="probe-loop" targetRef="probe-done" />
|
|
209
|
+
<bpmn:sequenceFlow id="f_probeTimeout" sourceRef="probe-timeout" targetRef="probe-last-attempt" />
|
|
210
|
+
<bpmn:sequenceFlow id="f_lastAttemptDone" sourceRef="probe-last-attempt" targetRef="probe-done" />
|
|
164
211
|
<bpmn:sequenceFlow id="f_toReady" sourceRef="gw-gate" targetRef="wait-ready" />
|
|
165
212
|
<bpmn:sequenceFlow id="f_toTimeout" sourceRef="gw-gate" targetRef="wait-timeout" />
|
|
166
213
|
<bpmn:sequenceFlow id="f_ready" sourceRef="wait-ready" targetRef="gate-ready" />
|
|
@@ -181,170 +228,233 @@
|
|
|
181
228
|
<bpmndi:BPMNDiagram id="BPMNDiagram_readiness-gate">
|
|
182
229
|
<bpmndi:BPMNPlane id="BPMNPlane_readiness-gate" bpmnElement="readiness-gate">
|
|
183
230
|
<bpmndi:BPMNShape id="BPMNShape_Start" bpmnElement="Start">
|
|
184
|
-
<dc:Bounds x="80" y="
|
|
231
|
+
<dc:Bounds x="80" y="211" width="36" height="36" />
|
|
185
232
|
<bpmndi:BPMNLabel>
|
|
186
|
-
<dc:Bounds x="58" y="
|
|
233
|
+
<dc:Bounds x="58" y="252" width="80" height="14" />
|
|
187
234
|
</bpmndi:BPMNLabel>
|
|
188
235
|
</bpmndi:BPMNShape>
|
|
189
236
|
<bpmndi:BPMNShape id="BPMNShape_fork" bpmnElement="fork" isMarkerVisible="true">
|
|
190
|
-
<dc:Bounds x="216" y="
|
|
237
|
+
<dc:Bounds x="216" y="204" width="50" height="50" />
|
|
191
238
|
<bpmndi:BPMNLabel>
|
|
192
|
-
<dc:Bounds x="202" y="
|
|
239
|
+
<dc:Bounds x="202" y="171" width="78" height="28" />
|
|
193
240
|
</bpmndi:BPMNLabel>
|
|
194
241
|
</bpmndi:BPMNShape>
|
|
195
|
-
<bpmndi:BPMNShape id="BPMNShape_probe" bpmnElement="probe">
|
|
196
|
-
<dc:Bounds x="1288" y="80" width="
|
|
242
|
+
<bpmndi:BPMNShape id="BPMNShape_probe-loop" bpmnElement="probe-loop" isExpanded="true">
|
|
243
|
+
<dc:Bounds x="1288" y="80" width="602" height="298" />
|
|
244
|
+
</bpmndi:BPMNShape>
|
|
245
|
+
<bpmndi:BPMNShape id="BPMNShape_probe-last-attempt" bpmnElement="probe-last-attempt">
|
|
246
|
+
<dc:Bounds x="1990" y="376" width="100" height="80" />
|
|
197
247
|
</bpmndi:BPMNShape>
|
|
198
248
|
<bpmndi:BPMNShape id="BPMNShape_probe-done" bpmnElement="probe-done">
|
|
199
|
-
<dc:Bounds x="
|
|
249
|
+
<dc:Bounds x="2190" y="211" width="36" height="36" />
|
|
200
250
|
<bpmndi:BPMNLabel>
|
|
201
|
-
<dc:Bounds x="
|
|
251
|
+
<dc:Bounds x="2182" y="178" width="53" height="28" />
|
|
202
252
|
</bpmndi:BPMNLabel>
|
|
203
253
|
</bpmndi:BPMNShape>
|
|
204
254
|
<bpmndi:BPMNShape id="BPMNShape_gw-gate" bpmnElement="gw-gate" isMarkerVisible="true">
|
|
205
|
-
<dc:Bounds x="366" y="
|
|
255
|
+
<dc:Bounds x="366" y="391" width="50" height="50" />
|
|
206
256
|
<bpmndi:BPMNLabel>
|
|
207
|
-
<dc:Bounds x="360" y="
|
|
257
|
+
<dc:Bounds x="360" y="358" width="63" height="28" />
|
|
208
258
|
</bpmndi:BPMNLabel>
|
|
209
259
|
</bpmndi:BPMNShape>
|
|
210
260
|
<bpmndi:BPMNShape id="BPMNShape_wait-ready" bpmnElement="wait-ready">
|
|
211
|
-
<dc:Bounds x="516" y="
|
|
261
|
+
<dc:Bounds x="516" y="398" width="36" height="36" />
|
|
212
262
|
<bpmndi:BPMNLabel>
|
|
213
|
-
<dc:Bounds x="501" y="
|
|
263
|
+
<dc:Bounds x="501" y="439" width="67" height="42" />
|
|
214
264
|
</bpmndi:BPMNLabel>
|
|
215
265
|
</bpmndi:BPMNShape>
|
|
216
266
|
<bpmndi:BPMNShape id="BPMNShape_wait-timeout" bpmnElement="wait-timeout">
|
|
217
|
-
<dc:Bounds x="516" y="
|
|
267
|
+
<dc:Bounds x="516" y="558" width="36" height="36" />
|
|
218
268
|
<bpmndi:BPMNLabel>
|
|
219
|
-
<dc:Bounds x="501" y="
|
|
269
|
+
<dc:Bounds x="501" y="599" width="67" height="42" />
|
|
220
270
|
</bpmndi:BPMNLabel>
|
|
221
271
|
</bpmndi:BPMNShape>
|
|
222
272
|
<bpmndi:BPMNShape id="BPMNShape_gate-ready" bpmnElement="gate-ready">
|
|
223
|
-
<dc:Bounds x="659" y="
|
|
273
|
+
<dc:Bounds x="659" y="398" width="36" height="36" />
|
|
224
274
|
<bpmndi:BPMNLabel>
|
|
225
|
-
<dc:Bounds x="657" y="
|
|
275
|
+
<dc:Bounds x="657" y="439" width="41" height="14" />
|
|
226
276
|
</bpmndi:BPMNLabel>
|
|
227
277
|
</bpmndi:BPMNShape>
|
|
228
278
|
<bpmndi:BPMNShape id="BPMNShape_gw-onTimeout" bpmnElement="gw-onTimeout" isMarkerVisible="true">
|
|
229
|
-
<dc:Bounds x="652" y="
|
|
279
|
+
<dc:Bounds x="652" y="551" width="50" height="50" />
|
|
230
280
|
<bpmndi:BPMNLabel>
|
|
231
|
-
<dc:Bounds x="637" y="
|
|
281
|
+
<dc:Bounds x="637" y="532" width="81" height="14" />
|
|
232
282
|
</bpmndi:BPMNLabel>
|
|
233
283
|
</bpmndi:BPMNShape>
|
|
234
284
|
<bpmndi:BPMNShape id="BPMNShape_readiness-escalation" bpmnElement="readiness-escalation">
|
|
235
|
-
<dc:Bounds x="802" y="
|
|
285
|
+
<dc:Bounds x="802" y="536" width="100" height="80" />
|
|
236
286
|
</bpmndi:BPMNShape>
|
|
237
287
|
<bpmndi:BPMNShape id="BPMNShape_gw-resolution" bpmnElement="gw-resolution" isMarkerVisible="true">
|
|
238
|
-
<dc:Bounds x="1002" y="
|
|
288
|
+
<dc:Bounds x="1002" y="551" width="50" height="50" />
|
|
239
289
|
<bpmndi:BPMNLabel>
|
|
240
|
-
<dc:Bounds x="987" y="
|
|
290
|
+
<dc:Bounds x="987" y="532" width="81" height="14" />
|
|
241
291
|
</bpmndi:BPMNLabel>
|
|
242
292
|
</bpmndi:BPMNShape>
|
|
243
293
|
<bpmndi:BPMNShape id="BPMNShape_gate-escalated" bpmnElement="gate-escalated">
|
|
244
|
-
<dc:Bounds x="1152" y="
|
|
294
|
+
<dc:Bounds x="1152" y="558" width="36" height="36" />
|
|
245
295
|
<bpmndi:BPMNLabel>
|
|
246
|
-
<dc:Bounds x="1136" y="
|
|
296
|
+
<dc:Bounds x="1136" y="539" width="69" height="14" />
|
|
247
297
|
</bpmndi:BPMNLabel>
|
|
248
298
|
</bpmndi:BPMNShape>
|
|
249
299
|
<bpmndi:BPMNShape id="BPMNShape_gate-failed" bpmnElement="gate-failed">
|
|
250
|
-
<dc:Bounds x="1152" y="
|
|
300
|
+
<dc:Bounds x="1152" y="718" width="36" height="36" />
|
|
251
301
|
<bpmndi:BPMNLabel>
|
|
252
|
-
<dc:Bounds x="1146" y="
|
|
302
|
+
<dc:Bounds x="1146" y="759" width="48" height="14" />
|
|
253
303
|
</bpmndi:BPMNLabel>
|
|
254
304
|
</bpmndi:BPMNShape>
|
|
255
305
|
<bpmndi:BPMNShape id="BPMNShape_gate-continued" bpmnElement="gate-continued">
|
|
256
|
-
<dc:Bounds x="834" y="
|
|
306
|
+
<dc:Bounds x="834" y="878" width="36" height="36" />
|
|
257
307
|
<bpmndi:BPMNLabel>
|
|
258
|
-
<dc:Bounds x="818" y="
|
|
308
|
+
<dc:Bounds x="818" y="919" width="69" height="14" />
|
|
259
309
|
</bpmndi:BPMNLabel>
|
|
260
310
|
</bpmndi:BPMNShape>
|
|
261
311
|
<bpmndi:BPMNShape id="BPMNShape_probe-timeout" bpmnElement="probe-timeout">
|
|
262
|
-
<dc:Bounds x="
|
|
312
|
+
<dc:Bounds x="1571" y="360" width="36" height="36" />
|
|
263
313
|
<bpmndi:BPMNLabel>
|
|
264
|
-
<dc:Bounds x="
|
|
314
|
+
<dc:Bounds x="1551" y="421" width="76" height="28" />
|
|
265
315
|
</bpmndi:BPMNLabel>
|
|
266
316
|
</bpmndi:BPMNShape>
|
|
267
317
|
<bpmndi:BPMNEdge id="BPMNEdge_f_start" bpmnElement="f_start">
|
|
268
|
-
<di:waypoint x="116" y="
|
|
269
|
-
<di:waypoint x="216" y="
|
|
318
|
+
<di:waypoint x="116" y="229" />
|
|
319
|
+
<di:waypoint x="216" y="229" />
|
|
270
320
|
</bpmndi:BPMNEdge>
|
|
271
321
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toProbe" bpmnElement="f_toProbe">
|
|
272
|
-
<di:waypoint x="266" y="
|
|
273
|
-
<di:waypoint x="1288" y="
|
|
322
|
+
<di:waypoint x="266" y="229" />
|
|
323
|
+
<di:waypoint x="1288" y="229" />
|
|
274
324
|
</bpmndi:BPMNEdge>
|
|
275
325
|
<bpmndi:BPMNEdge id="BPMNEdge_f_probed" bpmnElement="f_probed">
|
|
276
|
-
<di:waypoint x="
|
|
277
|
-
<di:waypoint x="
|
|
326
|
+
<di:waypoint x="1890" y="229" />
|
|
327
|
+
<di:waypoint x="2190" y="229" />
|
|
278
328
|
</bpmndi:BPMNEdge>
|
|
279
329
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReady" bpmnElement="f_toReady">
|
|
280
|
-
<di:waypoint x="416" y="
|
|
281
|
-
<di:waypoint x="516" y="
|
|
330
|
+
<di:waypoint x="416" y="416" />
|
|
331
|
+
<di:waypoint x="516" y="416" />
|
|
282
332
|
</bpmndi:BPMNEdge>
|
|
283
333
|
<bpmndi:BPMNEdge id="BPMNEdge_f_ready" bpmnElement="f_ready">
|
|
284
|
-
<di:waypoint x="552" y="
|
|
285
|
-
<di:waypoint x="659" y="
|
|
334
|
+
<di:waypoint x="552" y="416" />
|
|
335
|
+
<di:waypoint x="659" y="416" />
|
|
286
336
|
</bpmndi:BPMNEdge>
|
|
287
337
|
<bpmndi:BPMNEdge id="BPMNEdge_f_escalate" bpmnElement="f_escalate">
|
|
288
|
-
<di:waypoint x="702" y="
|
|
289
|
-
<di:waypoint x="802" y="
|
|
338
|
+
<di:waypoint x="702" y="576" />
|
|
339
|
+
<di:waypoint x="802" y="576" />
|
|
290
340
|
<bpmndi:BPMNLabel>
|
|
291
|
-
<dc:Bounds x="722" y="
|
|
341
|
+
<dc:Bounds x="722" y="584" width="60" height="14" />
|
|
292
342
|
</bpmndi:BPMNLabel>
|
|
293
343
|
</bpmndi:BPMNEdge>
|
|
294
344
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toResolution" bpmnElement="f_toResolution">
|
|
295
|
-
<di:waypoint x="902" y="
|
|
296
|
-
<di:waypoint x="1002" y="
|
|
345
|
+
<di:waypoint x="902" y="576" />
|
|
346
|
+
<di:waypoint x="1002" y="576" />
|
|
297
347
|
</bpmndi:BPMNEdge>
|
|
298
348
|
<bpmndi:BPMNEdge id="BPMNEdge_f_ack" bpmnElement="f_ack">
|
|
299
|
-
<di:waypoint x="1052" y="
|
|
300
|
-
<di:waypoint x="1152" y="
|
|
349
|
+
<di:waypoint x="1052" y="576" />
|
|
350
|
+
<di:waypoint x="1152" y="576" />
|
|
301
351
|
<bpmndi:BPMNLabel>
|
|
302
|
-
<dc:Bounds x="1060" y="
|
|
352
|
+
<dc:Bounds x="1060" y="584" width="84" height="14" />
|
|
303
353
|
</bpmndi:BPMNLabel>
|
|
304
354
|
</bpmndi:BPMNEdge>
|
|
305
355
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGate" bpmnElement="f_toGate">
|
|
306
|
-
<di:waypoint x="241" y="
|
|
307
|
-
<di:waypoint x="241" y="
|
|
308
|
-
<di:waypoint x="366" y="
|
|
356
|
+
<di:waypoint x="241" y="254" />
|
|
357
|
+
<di:waypoint x="241" y="416" />
|
|
358
|
+
<di:waypoint x="366" y="416" />
|
|
309
359
|
</bpmndi:BPMNEdge>
|
|
310
360
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toTimeout" bpmnElement="f_toTimeout">
|
|
311
|
-
<di:waypoint x="391" y="
|
|
312
|
-
<di:waypoint x="391" y="
|
|
313
|
-
<di:waypoint x="516" y="
|
|
361
|
+
<di:waypoint x="391" y="441" />
|
|
362
|
+
<di:waypoint x="391" y="576" />
|
|
363
|
+
<di:waypoint x="516" y="576" />
|
|
314
364
|
</bpmndi:BPMNEdge>
|
|
315
365
|
<bpmndi:BPMNEdge id="BPMNEdge_f_fail" bpmnElement="f_fail">
|
|
316
|
-
<di:waypoint x="677" y="
|
|
317
|
-
<di:waypoint x="677" y="
|
|
318
|
-
<di:waypoint x="1152" y="
|
|
366
|
+
<di:waypoint x="677" y="601" />
|
|
367
|
+
<di:waypoint x="677" y="736" />
|
|
368
|
+
<di:waypoint x="1152" y="736" />
|
|
319
369
|
<bpmndi:BPMNLabel>
|
|
320
|
-
<dc:Bounds x="836" y="
|
|
370
|
+
<dc:Bounds x="836" y="714" width="32" height="14" />
|
|
321
371
|
</bpmndi:BPMNLabel>
|
|
322
372
|
</bpmndi:BPMNEdge>
|
|
323
373
|
<bpmndi:BPMNEdge id="BPMNEdge_f_continue" bpmnElement="f_continue">
|
|
324
|
-
<di:waypoint x="677" y="
|
|
325
|
-
<di:waypoint x="677" y="
|
|
326
|
-
<di:waypoint x="834" y="
|
|
374
|
+
<di:waypoint x="677" y="601" />
|
|
375
|
+
<di:waypoint x="677" y="896" />
|
|
376
|
+
<di:waypoint x="834" y="896" />
|
|
327
377
|
<bpmndi:BPMNLabel>
|
|
328
|
-
<dc:Bounds x="682" y="
|
|
378
|
+
<dc:Bounds x="682" y="809" width="60" height="14" />
|
|
329
379
|
</bpmndi:BPMNLabel>
|
|
330
380
|
</bpmndi:BPMNEdge>
|
|
331
381
|
<bpmndi:BPMNEdge id="BPMNEdge_f_abandon" bpmnElement="f_abandon">
|
|
332
|
-
<di:waypoint x="1027" y="
|
|
333
|
-
<di:waypoint x="1027" y="
|
|
334
|
-
<di:waypoint x="1152" y="
|
|
382
|
+
<di:waypoint x="1027" y="601" />
|
|
383
|
+
<di:waypoint x="1027" y="736" />
|
|
384
|
+
<di:waypoint x="1152" y="736" />
|
|
335
385
|
<bpmndi:BPMNLabel>
|
|
336
|
-
<dc:Bounds x="1032" y="
|
|
386
|
+
<dc:Bounds x="1032" y="662" width="53" height="14" />
|
|
337
387
|
</bpmndi:BPMNLabel>
|
|
338
388
|
</bpmndi:BPMNEdge>
|
|
389
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_lastAttemptDone" bpmnElement="f_lastAttemptDone">
|
|
390
|
+
<di:waypoint x="2090" y="416" />
|
|
391
|
+
<di:waypoint x="2208" y="416" />
|
|
392
|
+
<di:waypoint x="2208" y="247" />
|
|
393
|
+
</bpmndi:BPMNEdge>
|
|
339
394
|
<bpmndi:BPMNEdge id="BPMNEdge_f_timedOut" bpmnElement="f_timedOut">
|
|
340
|
-
<di:waypoint x="552" y="
|
|
341
|
-
<di:waypoint x="652" y="
|
|
395
|
+
<di:waypoint x="552" y="576" />
|
|
396
|
+
<di:waypoint x="652" y="576" />
|
|
342
397
|
</bpmndi:BPMNEdge>
|
|
343
398
|
<bpmndi:BPMNEdge id="BPMNEdge_f_probeTimeout" bpmnElement="f_probeTimeout">
|
|
344
|
-
<di:waypoint x="
|
|
345
|
-
<di:waypoint x="
|
|
346
|
-
<di:waypoint x="
|
|
347
|
-
|
|
399
|
+
<di:waypoint x="1589" y="396" />
|
|
400
|
+
<di:waypoint x="1589" y="416" />
|
|
401
|
+
<di:waypoint x="1990" y="416" />
|
|
402
|
+
</bpmndi:BPMNEdge>
|
|
403
|
+
<bpmndi:BPMNShape id="BPMNShape_probe-loop-start" bpmnElement="probe-loop-start">
|
|
404
|
+
<dc:Bounds x="1328" y="142" width="36" height="36" />
|
|
405
|
+
<bpmndi:BPMNLabel>
|
|
406
|
+
<dc:Bounds x="1306" y="183" width="80" height="28" />
|
|
407
|
+
</bpmndi:BPMNLabel>
|
|
408
|
+
</bpmndi:BPMNShape>
|
|
409
|
+
<bpmndi:BPMNShape id="BPMNShape_probe" bpmnElement="probe">
|
|
410
|
+
<dc:Bounds x="1464" y="120" width="100" height="80" />
|
|
411
|
+
</bpmndi:BPMNShape>
|
|
412
|
+
<bpmndi:BPMNShape id="BPMNShape_probe-ready-gw" bpmnElement="probe-ready-gw" isMarkerVisible="true">
|
|
413
|
+
<dc:Bounds x="1664" y="135" width="50" height="50" />
|
|
414
|
+
<bpmndi:BPMNLabel>
|
|
415
|
+
<dc:Bounds x="1666" y="116" width="46" height="14" />
|
|
416
|
+
</bpmndi:BPMNLabel>
|
|
417
|
+
</bpmndi:BPMNShape>
|
|
418
|
+
<bpmndi:BPMNShape id="BPMNShape_wait-poll" bpmnElement="wait-poll">
|
|
419
|
+
<dc:Bounds x="1814" y="302" width="36" height="36" />
|
|
420
|
+
<bpmndi:BPMNLabel>
|
|
421
|
+
<dc:Bounds x="1798" y="269" width="68" height="28" />
|
|
422
|
+
</bpmndi:BPMNLabel>
|
|
423
|
+
</bpmndi:BPMNShape>
|
|
424
|
+
<bpmndi:BPMNShape id="BPMNShape_probe-loop-end" bpmnElement="probe-loop-end">
|
|
425
|
+
<dc:Bounds x="1814" y="142" width="36" height="36" />
|
|
426
|
+
<bpmndi:BPMNLabel>
|
|
427
|
+
<dc:Bounds x="1792" y="183" width="80" height="14" />
|
|
428
|
+
</bpmndi:BPMNLabel>
|
|
429
|
+
</bpmndi:BPMNShape>
|
|
430
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pl_toProbe" bpmnElement="pl_toProbe">
|
|
431
|
+
<di:waypoint x="1364" y="160" />
|
|
432
|
+
<di:waypoint x="1464" y="160" />
|
|
433
|
+
</bpmndi:BPMNEdge>
|
|
434
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pl_probed" bpmnElement="pl_probed">
|
|
435
|
+
<di:waypoint x="1564" y="160" />
|
|
436
|
+
<di:waypoint x="1664" y="160" />
|
|
437
|
+
</bpmndi:BPMNEdge>
|
|
438
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pl_ready" bpmnElement="pl_ready">
|
|
439
|
+
<di:waypoint x="1714" y="160" />
|
|
440
|
+
<di:waypoint x="1814" y="160" />
|
|
441
|
+
<bpmndi:BPMNLabel>
|
|
442
|
+
<dc:Bounds x="1745" y="138" width="39" height="14" />
|
|
443
|
+
</bpmndi:BPMNLabel>
|
|
444
|
+
</bpmndi:BPMNEdge>
|
|
445
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pl_notReady" bpmnElement="pl_notReady">
|
|
446
|
+
<di:waypoint x="1689" y="185" />
|
|
447
|
+
<di:waypoint x="1689" y="320" />
|
|
448
|
+
<di:waypoint x="1814" y="320" />
|
|
449
|
+
<bpmndi:BPMNLabel>
|
|
450
|
+
<dc:Bounds x="1694" y="246" width="64" height="14" />
|
|
451
|
+
</bpmndi:BPMNLabel>
|
|
452
|
+
</bpmndi:BPMNEdge>
|
|
453
|
+
<bpmndi:BPMNEdge id="BPMNEdge_pl_pollBack" bpmnElement="pl_pollBack">
|
|
454
|
+
<di:waypoint x="1832" y="338" />
|
|
455
|
+
<di:waypoint x="1832" y="358" />
|
|
456
|
+
<di:waypoint x="1514" y="358" />
|
|
457
|
+
<di:waypoint x="1514" y="200" />
|
|
348
458
|
</bpmndi:BPMNEdge>
|
|
349
459
|
</bpmndi:BPMNPlane>
|
|
350
460
|
</bpmndi:BPMNDiagram>
|