Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
We want to make an existing projet "multithreading compatible".
For now, most of the jobs are executed through tRunJob component with "Use dynamic job" option enabled and it runs fine. Those child jobs return information to Master Job through console using system.out.println() in tJava component.
To illustrate my words, let's say my project is built that way :
Master Job
|__Child Job A
|__Child Job B
Master Job runs through tRunJob component Child Job A then sequentially Child Job B.
Child Job A returns in console :
[list=*]
Child Job B returns in console :
[list=*]
In my Master Job, console should display :
[list=*]
Now, the parallel scenario.
We successfully enabled the parallel execution of Child Job A & Child Job B, but console now displays something like :
[list=*]
This display is not easily readable and not compatible with our requirements.
Do you have any clue on how to get the initial display ? Namely :
[list=*]
Changing the way the child jobs return information to master job is hardly an option as dozen of child jobs are concerned.
Many thanks in advance for any help !
Regards,
Sylvain