Excited to see that the 6.6 release includes
- In and out parameters can be defined for signal events, similar to the existing in and out parameter support for call activities…
Is there any code / examples I can look at to see how this looks in terms of XML.
There doesn’t seem to be any UI for it yet, but if I can figure out how to do it manually that will work for me
I’m imagining it will look something like the following??
<signal id="someSignal" name="Some Signal" flowable:scope="processInstance"></signal>
<process id="test1" name="test1" isExecutable="true">
<startEvent id="startEvent1" flowable:formFieldValidation="true"></startEvent>
<sequenceFlow id="1" sourceRef="startEvent1" targetRef="throwSignalWithParams"></sequenceFlow>
<intermediateThrowEvent id="throwSignalWithParams">
<signalEventDefinition>
<extensionElements>
<flowable:out source="myVar" target="targetMyVar"></flowable:out>
</extensionElements>
</signalEventDefinition>
</intermediateThrowEvent>
<endEvent id="end"></endEvent>
<sequenceFlow id="2" sourceRef="throwSignalWithParams" targetRef="end"></sequenceFlow> </process>