LSPS documentation logo
LSPS Documentation
Events

An Event is any element in a BPMN-based Process or Plan model that triggers or terminates the workflow, thus modifying the execution pace or causing a flow change.

Based on the position and function in the workflow, the following types events are available:

  • Start Events trigger workflow execution by creating contexts and producing tokens.
  • Intermediate Events delay processes based on events or handle an event produced in an activity if used as a boundary element.
  • End Events consume the incoming token.

Start Events

A Start Event indicates where a particular workflow starts. When triggered, it creates the context for the element, that is, a process, plan, or subprocess, and produces a token, which leaves through its outgoing flow, in the context.

A Start Event has no incoming flow and only one outgoing Normal Flow.

In Plans of Goal-based Processes and Sub-Processes, its None Start Event is triggered when the Plan becomes running. A Plan can contain only a None Start Event.

While a model instance is running, any Start Events in its BPMN-based Process can create their process instance when their trigger occurs: if there is a Condition Start Event and its condition is true, the event is triggered when the model instance starts and whenever the condition becomes false and true again as long as the model instance is running.

Start Events with triggers can start BPMN-based processes and inline event sub-processes:

  • In a BPMN-based process: Start Events whose triggers occurred, are triggered when the model instance is created. Each Start Event creates its process instance. If the trigger occurs again while the process instance is running, the start event creates a new process instance.
  • In an [inline event sub-process], if the trigger occurs at any time while the parent process instance or sub-process instance is running, the events creates an instance of their sub-process and produces a token. Note that the inline event subprocess can also be a reusable sub-process so the start events can be in the referenced process.

None Start Event

A None Start Event is triggered when its parent context is created. It does the following depending on its location:

  • When in a BPMN-based Process, it creates the context of the process instance and produces a token when the model instance becomes running;
  • When in a Sub-Process: it creates the context of the subprocess and produces a token when the sub-Process is triggered, that is, it receives a token via its incoming flow or, if the sub-process does not have an incoming flow, at the moment it is triggered.
  • Plan, once the Plan becomes running, the None Start Event of the Plan Model is triggered.
NoneStartEvent.png
None Start Event

Conditional Start Event

A Conditional Start Event defines a boolean condition expression as its trigger and starts a BPMN-based Process or an inline-event subprocess:

  • When in a BPMN-based Process, the event creates and triggers an instance of the process:
    • when its condition is true at model instantiation
    • when the condition, previously evaluated to false, becomes true while process instance is running.
  • When in an inline-event subprocess, the event creates and triggers an instance of the sub-process
    • when its condition is true at process instantiation
    • when the condition, previously evaluated to false, becomes true while process instance is running.

Note that the condition cannot reference local context since the context does not exist at the moment when it is evaluated.

ConditionalStartEvent.png
Conditional Start Event
Conditional Start Event Attributes

  • Condition evaluated when the event is triggered. If true, the event produces a token.

Signal Start Event

A Signal Start Event creates the context of a BPMN-based Process or an inline-event subprocess and produces a token when it receives a Signal that passes through the Filter.

SignalStartEvent.png
Signal Start Event
  • Filter: filter for the expected Signal object
  • Signal: reference where to store the received signal value

Timer Start Event

A Timer Start Event instantiates a BPMN-based process or an inline event subprocess at a particular point in time. The point in time is defined by its date and period attributes:

  • If only the date is defined, the event occurs at the moment when the date occurs.
  • If both date and period are defined, the event occurs after the period since the date has elapsed.
  • If only the period is defined, the event is never triggered.

If the date occurred in the past, the event is triggered immediately.

Timer Start Event Notation

TimerStartEvent.png
Timer Start Event

Escalation Start Event

An Escalation Start Event creates the context of an inline event subprocess and produces a token when it receives an Escalation object while its parent instance is running (parent can be either a process instance or a sub-process instance if the sub-process is nested in another sub-process).

In other than an Inline Event Sub-Process, the event is ignored.

EscalationStartEvent.png
Escalation Start Event

Escalation Start Event Attributes

  • Filter defines the escalation codes of accepted Escalation objects. If no codes are defined, any Escalation object triggers the event. The filter is evaluated at the moment when the escalation event is received.
  • Escalation is the reference to a local or global context (for example, a variable or a variable field) that will store the received Escalation object.
  • Escalation code reference: Event consumes only escalations with the defined escalation code (if the escalation code is not specified then the Event accepts all escalations).

Error Start Event

An Error Start Event triggers its flow when it receives an Error object. You can use it only as a start event of an Inline Event Sub-Process: When the parent of the sub-process throws an error and the error code matches a code in the Error Code Filter of the Error Start Event, the event creates the context of the inline event sub-process and produces a token. The Error Code Filter is evaluated at the moment when the error event is received (An Error is thrown either by the system automatically when something goes wrong, or you can throw an Error with the error() call).

The parent can be either a process instance or a sub-process instance if that the sub-process is nested in another sub-process.

In other than an Inline Event Sub-Process, the event is ignored.

ErrorStartEvent.png
Error Start Event
ErrorStartAndEndEvent.png
Error Start Event Attributes

  • Error Code Filter defines the filter that returns the expected errors (only error events from the Error reference that meet the filter criterion trigger the start event).
  • Error Code is the reference to a local or global context (variable or a variable field) that will store the received error.

Intermediate Events

An intermediate event process element handles a predictable event that can occur during workflow execution, such as, an error, timeout, breached condition, etc. When such event occurs, the event produces a token, which takes the outgoing flow of the event.

The scope the events listen to is defined by where they are placed:

  • on the boundary of an Activity: If the activity is Alive and the event occurs, the outgoing flow of the Intermediate Event is taken.

    Note: If a boundary event is attached to a multi-instance Activity, all the instances of the Activity are interrupted when the Event is triggered.

    When the Intermediate Event on an activity is triggered, the activity can either continue or terminate. This depends on the interruptibility property of the Intermediate Event:

    • If the event is interrupting, the activity is deactivated when the event is triggered.
    • If the event is non-interrupting, the activity continues its execution: note that if the event occurs again while the Activity is alive, the boundary event is triggered again.
      IEOnBoundary.png
  • flow object with one incoming and one outgoing flow: the event is triggered when the flow reaches the event. Once the event occurs, the execution continues via the outgoing flow of the Intermediate Event.
    IEIncomingOutgoing.png
  • flow object with no incoming and one outgoing flow: the event is triggered whenever the event condition occurs while its context is running.
    IEOutgoing.png

Timer Intermediate Events

A Timer Intermediate Event delays a workflow. The delay is defined by its date and period attributes. The interpretation of the attributes depends on where the event is placed:

  • When placed in a workflow as a flow object with one incoming and one outgoing flow, the event holds the incoming token. When the token is released depends on the date and period attributes:
    • If only the date is defined, the token is released when the date occurs (immediately if the date has already occurred when the activity becomes running).
    • If only the period is defined, the toke is released immediately.
    • If both are defined, the period is ignored.

      Note: A Timer Intermediate Event in a workflow cannot be the target element of a Sequence Flow leaving a Gateway.

  • When placed on an Activity border, the event can be triggered only while its Activity is running and that as follows:
    • If only the date is defined, the event produces a token when the date occurs (immediately if the date has already occurred when the activity becomes running).
    • If both are defined, the event fires first on the date and then always when the period elapses. If the event is interrupting, the period attribute is never applied since the activity is interrupted once the first token is produced by the event.
    • If only the period is defined, the event is never triggered.
  • When placed into a process or subprocess with no incoming flow, the event can be triggered only while its process or subprocess context is running and that as follows:
    • If the date is defined, a token is produced when the date occurs.
    • If both are defined, the event fires first on the date and then always when the period elapses.
    • If only the period is defined, the event is never triggered.
TimerIntermediateEventNonInterrupting.png
Non-Interrupting Timer Intermediate Event
TimerIntermediateEvent.png
Interrupting Timer Intermediate Event

Error Intermediate Events

An Error Intermediate Event serves to define a workflow that is taken after an Activity produces an error: it explicitly produces an error or it ends with an Error End Event.

The element is placed on boundaries of Activities, that is, Tasks or Sub-Process. An Activity can have multiple Error Intermediate Events attached to its boundary.

An Error Intermediate Event can define a set of errors it may consume. The errors are identified by their error code. Once the event catches one of the error codes, its outgoing Flow is taken. If no error code is specified (null), the Error Intermediate Event catches any Error produced in its child contexts unless it is processed by other Error Intermediate Event, which explicitly specifies the error code.

If there are several Error Intermediate Events attached to an Activity, the Error is caught and processed by the Error Intermediate Event with the priority depending on the way its error codes are defined:

  1. only the error code of the particular error;
  2. set of error codes including the particular error code;
  3. no particular error code.
ErrorIntermediateEventNonInterrupting.png
Non-Interrupting Error Intermediate Event
ErrorIntermediateEvent.png
Interrupting Error Intermediate Event
ErrorIEOnBorder.png
Error Intermediate Event Attributes

  • Error Code Filter defines the filter that returns the expected errors (only error events from the Error reference that meet the filter criterion trigger the event).

    If no filter is defined of returns null, the event catches all errors.

  • Error Code is the reference to a local or global context (variable or a variable field) that will store the received error.

Cancel Intermediate Events

A Cancel Intermediate Event is an event that handles a Cancel End Event with the aim to cancel the actions of a Transaction Sub-Process.

Hence, it can be attached only to a boundary of a Transaction Sub-Process that contains a Cancel End Event. When the Sub-Process finishes with the Cancel End Event, the outgoing flow of the Cancel Intermediate Event attached to its boundary is taken.

CancelIntermediateEventNonInterrupting.png
Non-Interrupting Cancel Intermediate Event
CancelIntermediateEvent.png
Interrupting Cancel Intermediate Event

Conditional Intermediate Event

A Conditional Intermediate Event is an intermediate event which checks a particular condition and is triggered when the condition becomes true:

  • If placed on an Activity boundary, the condition is checked continuously while the Activity is active or running. At the moment the condition becomes true, the execution of the Activity becomes interrupted and the Flow leaving the Conditional Intermediate Event is taken.

Note: There can be one or multiple Conditional Intermediate Events attached to one Activity.

  • If used in a workflow as a flow element with an incoming and outgoing flow, when the token reaches the Event, it is held until the condition becomes true.
ConditionalIntermediateEventNonInterrupting.png
Non-Interrupting Conditional Intermediate Event
ConditionalIntermediateEvent.png
Interrupting Conditional Intermediate Event

Throw Signal Intermediate Event

A Throw Signal Intermediate Event produces a Signal that can be caught by Start Signal Events and Signal Intermediate Events.

It can be used only as a workflow element with one incoming and one outgoing Flow.

When reached during execution, it sends the defined signal to the target model instances:

  • If the target model instance is the same model instance, it is synchronous, that is, it is produced and processed in the same transaction.
  • If the target model instance is another model instance, the signal is asynchronous, that is, it is processed by the target model instance only in the next transaction.

If no model instance is defined, the Signal is sent to its own model instance.

The Throw Signal Intermediate Event has to define the signal and the target model instances:

  • Model instances defines the IDs of model instances to which you want to send the Signal.
  • Signal value defines the Signal value.
ThrowSignalIntermediateEventNonInterrupting.png
Non-Interrupting Throw Signal Intermediate Event
ThrowSignalIntermediateEvent.png
Interrupting Throw Signal Intermediate Event

Note: You can throw a signal also with the sendSignal function from the Standard Library.

Catch Signal Intermediate Event

A Catch Signal Intermediate Event is triggered when it catches a Signal. Subsequently it produces a token which takes its outgoing Flow.

It can be either attached to a boundary of an Activity or used as a workflow element with one incoming and one outgoing Normal Flow. When active it waits until it has receives a Signal.

It can define a filter for the signals it accepts; if the received signal does not meet the defined filter criteria, it does not send a token.

The Catch Signal Intermediate Event cannot handle Signals of type Reference, Goal, Plan, or ModelInstance. Catching such signals causes a runtime exception.

Catch Signal Intermediate Event defines:

  • Filter: filter of the accepted Signal
  • Signal: reference to a storage, where the caught signal is stored
CatchSignalIntermediateEventNonInterrupting.png
Non-Interrupting Catch Signal Intermediate Event
CatchSignalIntermediateEvent.png
Interrupting Catch Signal Intermediate Event

Throw Escalation Intermediate Event

A Throw Escalation Intermediate Event is an Event which sends an Escalation object when triggered.

It can be used only as a workflow object with one incoming and one outgoing flow. When reached during execution, it sends the defined Escalation object, which is propagated throughout its context and up to higher contexts either until consumed by a Start Escalation Event or a Catch Escalation Intermediate Event or until no higher context is available.

Throw Escalation Intermediate Event Attributes

  • Escalation code defines the escalation code sent with the escalation object.
  • Escalation defines the payload of the Escalation object.

    Important: It is not possible to filter according to information in payload. You can use only the escalation code.

Catch Escalation Intermediate Event

A Catch Escalation Intermediate Event is a boundary intermediate event that catches and consumes an Escalation object that was thrown in its Activity and meets the filter criterion, and produces a token. It can be used only as a boundary element on an Activity and with an outgoing Normal Flow.

The event is active while the Activity is active. When the Escalation object is thrown in the Activity or its child contexts, the boundary Catch Escalation Intermediate Event consumes the Escalation object and produces a token which takes its outgoing Flow. Note that just like other boundary Intermediate Events, it can be non-interrupting or interrupting.

Catch Escalation Intermediate Event must define a reference object, where the object is stored. It can optionally define a filter definition: if the received Escalation object does not meet the filter criteria, it is ignored.

Catch Escalation Intermediate Event Notation

CatchEscalationIntermediateEventNonInterrupting.png
Non-Interrupting Catch Escalation Intermediate Event
CatchEscalationIntermediateEvent.png
Interrupting Catch Escalation Intermediate Event

Catch Escalation Intermediate Event Attributes

  • Filter contains the escalation codes of accepted Escalation objects.
  • Escalation defines a reference to a storage, where the caught escalation signal is to be stored.
  • Escalation code reference: Event consumes just escalations with the defined escalation code (if the escalation code is not specified then the Event accepts all escalations).

End Events

An End Event ends a workflow (consumes a token).

A workflow has one or multiple End Events and one or multiple Sequence Flows can enter an End Event. No outgoing Flow is allowed.

There are multiple types of End Events, which differ by the actions they perform when an execution flow enters the end events, that is, how they behave when they consume a token.

Simple End Events

A Simple End Event is the basic end Event type which consumes the incoming token; other tokens in the workflow remain uninfluenced. The particular workflow is finished successfully if it does not contain any other tokens.

Simple End Event Notation

SimpleEndEvent.png
Simple End Event

Terminate End Event

When a workflow reaches a Terminate End Event, all tokens in the given context and its subcontexts and the execution ends successfully: when a token reaches a Terminate End Event, any tokens in the given workflow and any sub-workflows are discarded.

For example, let's assume process A with subprocess B and subprocess C. Subprocess B finishes with a terminate end event has a subprocess BB. On runtime, subprocess B finishes with a terminate end event: As a result, any tokens in subprocess B and subprocess BB are discarded. Tokens in subprocess C and process A continue their flow unaltered.

Terminate End Event Notation

TerminateEndEvent.png
Terminate End Event

Error End Events

A Error End Event is an end event that implement error handling on a workflow end. The actions when triggered depend on the type of the parent namespace of the End Event. When a token enter an Error End Event, enters an Error End Event the following happens:

  • if in a Sub-Process:

The End Event generates an error with the respective Error Code (see Error) and the workflow is finished. The error is distributed gradually to higher namespaces and can be caught by an Error Intermediate Event contained in any parent namespace as to trigger a compensation process (see Error Intermediate Event).

  • Plan Models

    If a Plan Model ends with an Error End Event, the Plan fails (becomes Failed).

  • BPMN-based Processes

    If a BPMN-based Process instance finishes with an Error End Event, the last transaction is rolled back and an exception is created.

ErrorEndEvent.png
Error End Event
ErrorStartAndEndEvent.png
Error End Event Attributes

  • Error code defines the error code to be sent.

Cancel End Events

A Cancel End Event is a special End Event which ends a Transaction Sub-Processes.

When a token enters a Cancel End Event and the parent Transaction Sub-Process has no Cancel Intermediate Event attached, the last transaction is rolled back.

If there is a Cancel Intermediate Event attached to the parent Sub-Process, the Sub-Process execution fails (the Sub-Process becomes Interrupted) and the outgoing Flow of the attached Event is taken.

Cancel End Event Notation

CancelEndEvent.png
Cancel End Event

Throw Escalation End Events

When a workflow ends with a Throw Escalation End Event, the event generates an Escalation object with the respective code and the workflow finishes. The escalation is distributed gradually to higher context and can be caught by a Catch Escalation Intermediate Event or Escalation Start Event in any parent context.

Escalation End Event Notation

EscalationEndEvent.png
Escalation End Event
Escalation End Event Attributes

  • Escalation code defines a code sent with the escalation object that serves as the escalation identifier.
  • Escalation defines the payload of the Escalation object.

Note: It is not possible to filter according to information in payload. You can use only the escalation code.

No Exit End Events

A No Exit End Event is an end event that consumes a token in the workflow of an Inline Event Sub-Process without triggering the Sub-Process' outgoing Flow: no token for any outgoing Flow if present is produced but the Sub-Process execution finishes with success.

If a Process with such an event is used by a Reusable Inline Event Sub-Process which is not used as part of the workflow, that is, it does not have an outgoing Flow, the No Exit End Event behaves as a Simple End Event.

NoExitEndEvent.png
No Exit End Event