| Author |
Concurrent processing by threads.
|
yamini nadella
Ranch Hand
Joined: Apr 13, 2004
Posts: 257
|
|
Hi Friends, I am trying to implement concurrence processing in java by threads. From a main process I want to start 2 child processes. Then main process has to wait until all of its child processes got completed. Here 2 child processes can run parallel. So how can I stop main thread until all children execution get completed. Thanks in advance, Yamini.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24054
|
|
|
Use the "join()" method. Call it on each thread that you want to wait for, one after the other. You won't get past the last call until all the child threads have completed.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Concurrent processing by threads.
|
|
|