Skip to content

Commit 1038280

Browse files
authored
Merge pull request #10160 from hugomendix/patch-35
Add missing End event
2 parents e19167b + 6dfc880 commit 1038280

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

content/en/docs/refguide/modeling/application-logic/workflows/workflow-elements/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The elements of this category are described in the table below:
3333
| {{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/parallel-split.png" alt="Parallel Split" class="no-border" >}} | [Parallel split](/refguide/parallel-split/) | Adds two parallel paths to your workflow. |
3434
| {{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/jump.png" alt="Jump Activity" class="no-border" >}} | [Jump](/refguide/jump-activity/) | Allows you to jump to other activities in the workflow. |
3535
| {{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/wait-for-notification.png" alt="Wait for notification activity" class="no-border" >}} | [Wait for notification](/refguide/wait-for-notification/) | Allows you to suspend a workflow’s execution until the workflow is notified. |
36-
| {{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/end-event.png" alt="End event" class="no-border" >}} | End event | Ends the path of the workflow |
36+
| {{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/end-event.png" alt="End event" >}} | [End event](/refguide/end-event-in-workflows/) | Ends the path of the workflow. |
3737

3838
{{% alert color="info" %}}
3939
You can add customized activities to this section if you use the **Expose as a workflow action** setting in microflows. For more information see the [Expose as Workflow Action](/refguide/microflow/#expose-as-workflow-action) section in *Microflow Properties*.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "End Event"
3+
url: /refguide/end-event-in-workflows/
4+
weight: 50
5+
---
6+
7+
## Introduction
8+
9+
An **End Event** in workflows defines where a workflow process ends. When the workflow execution reaches this element, the process is completed and no further actions are taken.
10+
11+
A workflow can have multiple end events, as shown in the example below:
12+
13+
{{< figure src="/attachments/refguide/modeling/application-logic/workflows/workflow-elements/end-event/multiple-end-events.png" alt="End Event Example" width="400" >}}
14+
15+
In this example, there is a decision element where the workflow can take two different paths based on a condition. Each path leads to a different end event, either of which ends the process. In addition, an interrupting boundary event is attached to one of the user tasks, which also leads to its own end event. In all of these cases, only one path will be taken, and the process ends when it reaches the corresponding end event.
16+
17+
## Properties
18+
19+
The **End Event** does not have any configurable properties.
15.4 KB
Loading

0 commit comments

Comments
 (0)