Question threading?

lennonharrison

New member
Joined
Aug 22, 2008
Messages
2
Programming Experience
1-3
hi,

I have a AJax web service and which gets called 9 times. So i want to create nine threads. However, I dont want the next thread to start until the previous one has finished. How do i do this in vb.net?
thanks for your help
 
Use a loop in your thread method that make the 9 calls.
 
hi,

I have a AJax web service and which gets called 9 times. So i want to create nine threads. However, I dont want the next thread to start until the previous one has finished. How do i do this in vb.net?
thanks for your help
That doesn't make an awful lot of sense. The whole point of multiple threads is to perform multiple tasks in parallel. If you're performing your tasks in serial then why the multiple threads?
 
Back
Top