I've been using Camunda BPMN 2.0 for one of my workflow applications. In one of my service tasks, I created an execution listener at the start event and a task listener at the create event. I'm not sure whether it's proper to assign these simultaneously at the start event. If it's correct, which one of them will be getting executed first - Execution listener or Task Listener, at start or create event, respectively ?
相关问题
- Which of these technology to use for BPM / Workflo
- Import and export BPMN 2.0 XML into / from MS Visi
- Map bpmn to wsdl
- Migrating YAWL files (*.ywl) to BPMN 2.0 schema fi
- camunda api auto layout functionality?
相关文章
- Camunda deploy Delegate with global visibility
- Is there a Java API that creates BPMN? [closed]
- Camunda BPMN - Task listener vs Execution listener
- Is there any BPMN 2.0 Parser for .NET?
- Access service running in docker container from in
- Merging two versions of bpmn (xml) files
- Integrate Activiti Modeler using Maven
- Activiti / Camunda change boundary timer with vari
Task listeners can only be used with user tasks, since they provide callbacks when task (i.e. the task a human has to perform) state changes, cf http://docs.camunda.org/latest/guides/user-guide/#process-engine-delegation-code-task-listener
Assuming you have a user task like
When the user task is executed
In general, the task listener event cycle is contained between execution listener events
start
andend
. So the cycle when a user task is executed is: