コード例 #1
0
ファイル: Downloader.cs プロジェクト: mahongbo86/NWebCrawler
        public Downloader()
        {
            m_status  = DownloaderStatusType.NotStarted;
            m_queue   = new RoundRobinQueueManager();
            m_urlSet  = new HashSet <string>();
            m_history = new List <CrawlHistroyEntry>();

            m_dirty = false;
        }
コード例 #2
0
ファイル: Downloader.cs プロジェクト: phiree/ContentExtractor
        public Downloader()
        {
            m_status = DownloaderStatusType.NotStarted;
            m_queue = new UrlQueueManager();
            m_urlSet = new HashSet<string>();
            m_history = new List<CrawlHistroyEntry>();

            m_dirty = false;
        }