This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Concurrent processing by threads. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Concurrent processing by threads." Watch "Concurrent processing by threads." New topic
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.
Corey McGlone
Ranch Hand

Joined: Dec 20, 2001
Posts: 3271
Check out the Join method of the Thread class.
Corey


SCJP Tipline, etc.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Concurrent processing by threads.
 
Similar Threads
Concurrent processing by threads.
Java 1.6.0.20 broke my SwingWorker threads!
Process completes and abruptly stops its threads?
Limit concurrent threads; report successful execution; terminating hung threads
daemon thread and heavyweight concept