Hey guys,
I've got a GUI thread, which creates a new thread to compute some data. Depending on how big that data is more threads get spawned from the new thread.
My problem is this
GUI - Thread A - Thread A creates a new Object called objectB. Object B decides how many new threads to create to get the job done. Max 3 min 1.
So 've got
Gui - Thread A - Object - Thread 1, 2 3...
Now how can I tell Thread A that Thread 1 2 and 3 are finished?
Cheers.