I'm writing an application that has 5 threads that get some information from web simultaneously and fill 5 different fields in a buffer class.
I need to validate buffer data and store it in a database when all threads finished their job.
How can I do this (get alerted when all threads finished their work) ?
|
|
|||||
|
|
The approach I take is to use an ExecutorService to manage pools of threads.
|
|||
|
|
|
You can
Note that |
|||||||||||||
|
|
Apart from
Then you can repeatedly call Another thing that may be relevant, depending on your scenario is
|
|||||
|
|
You do
After this for loop, you can be sure all threads have finished their jobs. |
|||
|
|
|
Another possibility is the Pay attention that with this object, an |
|||
|
|
|
You can use Threadf#join method for this purpose. |
|||
|
|
|
Store the Thread-objects into some collection (like a List or a Set), then loop through the collection once the threads are started and call join() on the Threads. |
|||
|
|
|
An executor service can be used to manage multiple threads including status and completion. See http://programmingexamples.wikidot.com/executorservice |
|||
|
|
|
Although not relevant to OP's problem, if you are interested in synchronization (more precisely, a rendez-vous) with exactly one thread, you may use an In my case, I needed to pause the parent thread until the child thread did something, e.g. completed its initialization. A |
|||
|
|