Fork a process instance on signal

Hi,

I am running a system whose processes are managed using Flowable. I need to launch a process instance in flowable by posting a signal using REST. The problem is that the POST call waits until the process instance is terminated.

How can I convert it to something where I do not have to wait until completion?
I tried Async but the problem is that in that case I will not be able to pass variables in my REST call.

Any pointers are well appreciated.

TIA.
Deepanshu

Hi Deepanshu,

Did you make first task in the called process async?
In that case REST call starts the process and its executions returns before async task execution.

Regards
Martin

1 Like

Thanks @martin.grofcik