public function __construct()

in src/EnterpriseSearch/Schema/CrawlerNodeStats.php [33:49]


	public function __construct(
		int $pages_visited,
		int $urls_allowed,
		CrawlerDeniedUrlsInfo $urls_denied,
		CrawlerStatusCodesInfo $status_codes,
		CrawlerQueueSizesInfo $queue_size,
		int $active_threads,
		CrawlerWorkersInfo $workers,
	) {
		$this->pages_visited = $pages_visited;
		$this->urls_allowed = $urls_allowed;
		$this->urls_denied = $urls_denied;
		$this->status_codes = $status_codes;
		$this->queue_size = $queue_size;
		$this->active_threads = $active_threads;
		$this->workers = $workers;
	}