Intermediate Catch Event
Bases: Task
An API from Intermediate Catch Event from BPMN. This classes holds IntermediateCatchEventElement
as elements.
Attributes:
Name | Type | Description |
---|---|---|
root |
_Element
|
root of BPMN loaded as XML. |
Source code in bpmn_parser/_intermediate_catch_event.py
Bases: TaskElement
Parse an Intermediate Catch Event from BPMN.
Attributes:
Name | Type | Description |
---|---|---|
time_duration |
str
|
time duration of element in BPMN. |
Source code in bpmn_parser/_intermediate_catch_event.py
List
List all intermedicate catch events elements founded in .bpmn
file.
Output
[
IntermediateCatchEventElement(
id='Event_WaitToQueryData',
name='Wait 1h',
execution_listeners=[],
time_duration='PT1H'
),
IntermediateCatchEventElement(
id='Event_WaitToPreScreening',
name='Wait 30min',
execution_listeners=[],
time_duration='PT30M'
)
]
Get
Get a specific exclusive gateway by your ID.