public function __construct()

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


	public function __construct(
		string $created_at,
		string $scheduled_at,
		string $processing_started_at,
		int $processing_latency,
		int $time_since_last_scheduled,
		int $time_since_last_processed,
		int $total_processed,
	) {
		$this->created_at = $created_at;
		$this->scheduled_at = $scheduled_at;
		$this->processing_started_at = $processing_started_at;
		$this->processing_latency = $processing_latency;
		$this->time_since_last_scheduled = $time_since_last_scheduled;
		$this->time_since_last_processed = $time_since_last_processed;
		$this->total_processed = $total_processed;
	}