I have a process like this:
PROCESS 1
Start → Throw Message → Catch Message → Task1 → end
And another like this:
PROCESS 2
CatchEventStart → Task12 → ThrowEventEnd
So “Throw Message” sends a message to “CatchEventStart” then ** “Task12”** does something and in the end **“TrhowEventEnd” send a message to ** “Catch Message”
When I run process 1 instantly task 1 and task12 appears available to work, but what i want is to task1 to wait for the process 2 to end and the when message is catched by Catch Message the task1 to be available
Thanks for your help, is really great. I’m a beginner so maybe this is silly question to ask.