Reputation: 2268
It is possible to run all instances of a subprocess successively?
My process constis many service tasks and some are not allowed to run parallel. Can I run them into a own Thread Pool/Job Executer, where is only 1 Thread/Job allowed to run? Or have anyone a smarter idea?
Upvotes: 0
Views: 997
Reputation: 11993
You could setup an extra process engine (additional to default), deploy the process only there and set its jobexecutor to use a threadpool of size=1.
Upvotes: 2
Reputation: 5516
If you want to execute the subprocess in one by one you can also model it in the main process and use an embedded sub process (see example 1) or you use a call activity (see example 2) and call the sub process.
Example 1:
Example 2:
Upvotes: 1