finishedCrawling() 공개 메소드

Called when the crawl has ended.
public finishedCrawling ( ) : void
리턴 void
예제 #1
0
파일: Crawler.php 프로젝트: spatie/crawler
 /**
  * @param \Spatie\Crawler\Url|string $baseUrl
  */
 public function startCrawling($baseUrl)
 {
     if (!$baseUrl instanceof Url) {
         $baseUrl = Url::create($baseUrl);
     }
     $this->baseUrl = $baseUrl;
     $crawlUrl = CrawlUrl::create($baseUrl);
     $this->crawlQueue->add($crawlUrl);
     $this->startCrawlingQueue();
     $this->crawlObserver->finishedCrawling();
 }
예제 #2
0
파일: Crawler.php 프로젝트: spatie/crawler
 /**
  * Start the crawling process.
  *
  * @param \Spatie\Crawler\Url|string $baseUrl
  *
  * @throws \Spatie\Crawler\Exceptions\InvalidBaseUrl
  */
 public function startCrawling($baseUrl)
 {
     if (!$baseUrl instanceof Url) {
         $baseUrl = Url::create($baseUrl);
     }
     if ($baseUrl->isRelative()) {
         throw new InvalidBaseUrl();
     }
     $this->baseUrl = $baseUrl;
     $this->crawlUrl($baseUrl);
     $this->crawlObserver->finishedCrawling();
 }