jklee
jklee

Reputation: 2268

It is possible to run all instances of a subprocess successively?

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? enter image description here

Upvotes: 0

Views: 997

Answers (2)

Jan Galinski
Jan Galinski

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

Zelldon
Zelldon

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:

enter image description here

Example 2:

enter image description here

Upvotes: 1

Related Questions