Recursive function MultiThreading to perform one task at a time.
Posted
by Ajay
on Stack Overflow
See other posts from Stack Overflow
or by Ajay
Published on 2010-06-14T07:45:14Z
Indexed on
2010/06/14
7:52 UTC
Read the original article
Hit count: 246
Hi, I am writing a program to crawl the websites. The crawl function is a recursive one and may consume more time to complete, So I used Multi Threading to perform the crawl for multiple websites. What exactly I need is, after completion crawling one website it call next one (which should be in Queqe) instead multiple websites crawling at a time. I am using C# and ASP.NET.
© Stack Overflow or respective owner