I've looked for questions about the problem I am facing but I've got no similar questions here. I suppose the solution is trivial but I have no clue how to solve it.
In my scenario I have a process instance that at the end must throw a signal, then process engine should instantiate process from two (or more) process definitions.
I've followed instructions on the docs below - with no success:
https://github.com/camunda/docs.camunda.org/blob/master/site/src/documents/api-references/bpmn20/30-events/60-signal-events.html.md
I've tried to query which process are waiting for the signal, but it returns an empty list (I suppose it only works for process instances and not for process definitions) using the following approach:
List<Execution> executions = runtimeService.createExecutionQuery()
.signalEventSubscriptionName("alert")
.list();
We are using Camunda v7.1.0-Final and developing processes as Maven Projects on Eclipse.
So, how signal throwing and signal catching are supposed to work respectively for end events and start events?
Any help is appreciated.
Regards,
--
Jailson Brito
--
You received this message because you are subscribed to the Google Groups "camunda BPM users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to camunda-bpm-us...@googlegroups.com.
To post to this group, send email to camunda-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/camunda-bpm-users/9570b7ef-d7e7-4caa-9503-08664d7c1a19%40googlegroups.com.