bpmn-elements
bpmn-elements copied to clipboard
Executable workflow elements based on BPMN 2.0
Hello! Where is a headache to get parent's executionId by activity in some cases. For example if you will try something like: `const activity = execution.definitions[0].getActivityById('activityId');` `console.log(activity.parent.executionId);` The result is...
As explained in subject. Below is a test-case that breaks stating that "task" is not "start" beacuse there is no activity.wait on the startEvent element. ``` import testHelpers from '../helpers/testHelpers';...
Hi I'm using bpmn-engine to execute the whole process flow in my application, but the execution of any script expressions (e.g. the code of a ScriptTask or the condition of...
Hello! apparently I can extend the behaviour of an activity - but how to extend the behaviour of a SequenceFlow? I try to use an ExpressionHandler with an asynchronous resolveExpression...
src/tasks/LoopCharacteristics.js from line 169: ``` ParallelLoopCharacteristics.prototype._onCompleteMessage = function onCompleteMessage(routingKey, message) { const chr = this.characteristics; const { content } = message; if (content.output !== undefined) chr.output[content.index] = content.output; if (routingKey...
We are currently experiencing performance issues when it comes to transitions between serviceTasks (after the "next" function of the service is called, it takes quite long until the next serviceTask...
Hello, I'm trying to use your beautiful bpmn-engine but found a problem I can't sort out. In your serviceTask example you use this syntax: ` ` But I am creating...