I have a process that receives some data and stores it. I have a second process that will determine if there is enough data and will then perform a task.
Currently I am using a "Call activity" to invoke the second process. However I would like to de-couple the two processes. That is I would like process A to run to completion irrespective of process B.
Will message driven beans solve this and is it correct that they are not supported in the designer?
Can't you signal process A from process B? or do you want to "block" the calling-thread that starts process A until process B is complete? If this is the case, the only way is a call-activity I'm afraid. If not, signaling from process B will do the trick…