Skip to main content

None events

None events are unspecified events, also called "blank" events.

process

None start events​

A process can have, at most, one none start event (besides other types of start events).

A none start event is where the process instance or a subprocess starts when the process or the subprocess is activated.

None end events​

A process or subprocess can have multiple none end events. When a none end event is entered, the current execution path ends. If the process instance or subprocess has no more active execution paths, it is completed.

If an activity has no outgoing sequence flow, it behaves the same as it would be connected to a none end event. When the activity is completed, the current execution path ends.

Intermediate none events (throwing)​

Intermediate none events can be used to indicate some state achieved in the process. They are especially useful for monitoring to understand how the process is doing, for example, as milestones or KPIs.

The engine itself doesn't do anything in the event, it just passes through it.

Variable mappings​

Start and intermediate none events can have variable output mappings. End events do not support this.

For start events this is often used to initialize process variables.

Additional resources​

XML representation​

A none start event:

<bpmn:startEvent id="order-placed" name="Order Placed" />

A none end event:

<bpmn:endEvent id="order-delivered" name="Order Delivered" />

An intermediate none event:

<bpmn:intermediateThrowEvent id="money-collected" name="Money Collected" />