Dear all, - I have two jobs (JobA & JobB), one JobControlerX to add JobA & JobB. - Now, I will be run 10 JobControllerX as follow:
for(int i = 0; i < 10; i++) {
new JobControllerX[i]
start;
}
- Question: We want to many JobA or JobB running parallel, so above code is
true or false?
P/s: I run it, but at each time, only 1 job is run. We have using thread for
running JobControl in the JobControllerX
