Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Short ,i have three threads under execution,they completed their work 60%,now i want to start a new thread,when i starts it ,it doesnt starts execution,it only starts after the three threads completed 100 %.why this happen? i want to start the fourth one which concurrently goes with with all the three above.

i have four worker threads in my hand ,of these i started 3 threads they are doing a process(transfering files using ftp and changing the GUI).after sometime i want to start the fourth thread which shpuld run parallely with the three threads,but in my case after the three threads gets completed,the fourth thread gets started.i want the fourth thread works parallely with remaining. My code:

for(i=0;i<listview.selcteditems;i++)

{ Starter = delegate { Transfer.UploadFiles(FinalList, "DieboldFiles",Resume); }; //Starter = delegate { SpliceFile(lt); }; SenderThread = new Thread(Starter); SenderThread.IsBackground = true; SenderThread.Start();

}

after sometime i clear the selected items in the listview and insert new items and starts the process again

share|improve this question
1  
Can you share some code showing how it works now? – Fredrik Mörk Oct 13 '09 at 13:04
1  
What are these functions doing? Threading and UI may involve a different answer... – Ian Oct 13 '09 at 13:05
Are you ensuring that your worker threads are only accessing the GUI via Invokes and delegates? – ChrisBD Oct 13 '09 at 13:27
Are you using Invoke, or BeginInvoke? If you are using Invoke, are you doing anything that blocks? Are you sure you're not missing a single Invoke/BeginInvoke? What about the UpdateListProgress handlers? Does the receiving end have a maximum number of connections? Maybe it's not your client code that's blocking, but the receiver. – JMarsch Oct 13 '09 at 14:22
I'm a little confused. What exactly is the new process/function you want to add to the listview? I can see your doing some form of FileTransfer, what is it exactly you want to do when they have been done? – Alastair Pitts Oct 14 '09 at 6:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.