File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Threads and Synchronization 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 » Java » Threads and Synchronization
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.
Ernest Friedman-Hill
author and iconoclast
Marshal

Joined: Jul 08, 2003
Posts: 24054
    
  13

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]
 
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
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
Concurrent processing by threads.
daemon thread and heavyweight concept