-
Notifications
You must be signed in to change notification settings - Fork 0
/
endevent-finished-listener.html
50 lines (44 loc) · 2.08 KB
/
endevent-finished-listener.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<script type="text/javascript">
RED.nodes.registerType('endevent-finished-listener', {
category: 'ProcessCube Events',
color: '#02AFD6',
defaults: {
name: { value: '' },
engine: { value: '', type: 'processcube-engine-config' },
},
inputs: 0,
outputs: 1,
icon: 'endevent_finished_listener.svg',
label: function () {
return this.name || 'endevent-finished-listener';
},
});
</script>
<script type="text/html" data-template-name="endevent-finished-listener">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name" />
</div>
<div class="form-row">
<label for="node-input-engine"><i class="fa fa-tag"></i> Engine-URL</label>
<input type="text" id="node-input-engine" placeholder="http://engine:8000" />
</div>
</script>
<script type="text/markdown" data-help-name="endevent-finished-listener">
Waiting for end events that are finished.
## Outputs
: correlationId (string): The unique identifier for the correlation.
: processDefinitionId (string): The identifier for the process definition.
: processModelId (string): The identifier for the process model.
: processModelName (string): The name of the process model.
: processInstanceId (string): The unique identifier for the process instance.
: flowNodeId (string): The identifier for the flow node.
: flowNodeName (string): The name of the flow node.
: flowNodeInstanceId (string): The unique identifier for the flow node instance.
: previousFlowNodeInstanceId (string): The unique identifier for the previous flow node instance.
: ownerId (string): The identifier of the owner.
: currentToken (Object): An object representing the current token.
### References
- [The ProcessCube© Developer Network](https://processcube.io) - All documentation for the ProcessCube© platform
- [ProcessCube© LowCode Integration](https://processcube.io/docs/node-red) - LowCode integration in ProcessCube©
</script>