vote up 1 vote down star

I have a console application that inits 4 theads to perform a long task. I want my program to wait until the threads are complete, and then complete the program execution. Is there a way to stop the program from executing, letting the threads complete their job?

flag

4 Answers

vote up 1 vote down

Load your application after those threads are joined e.g:

Thread1.join();
Thread2.join();
Thread3.join();
Thread4.join();


startApplication();

If you could provide me in more detail i can help you better.

link|flag
vote up 1 vote down

Thread.Join is what you want.

link|flag
vote up 1 vote down

Depending upon how you're starting the 4 threads then WaitHandle.WaitAll might be a good place to start...

http://msdn.microsoft.com/en-us/library/z6w25xa6.aspx

link|flag
vote up 14 vote down

Threading.Thread.Join is what you are looking for.

Edit: Examples here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.