cancel
Showing results for 
Search instead for 
Did you mean: 

Start multiple process instances at the same time

aneeque
Champ in-the-making
Champ in-the-making
Hi

Is there a possibility to start multiple instances of the same process at the same time (in java code or activiti explorer)? If yes, how? (Sorry if its too basic but i could do this, I refer to the book for examples but I couldn't figure this out). I need to run multiple processes at the same time to have an average time for the process.

I time one instance at a time right now, and time duration varies significantly for each instance, so I need to run multiple instances and take the average. Please help.

Best regards
Aneeque
2 REPLIES 2

jbarrez
Star Contributor
Star Contributor
Sure, basic java. Use a threadpool with x threads and let them all do the process instance starting.

aneeque
Champ in-the-making
Champ in-the-making
Thanks alot for the help.