in src/EnterpriseSearch/Schema/ConnectorPool.php [33:49]
public function __construct(
int $busy,
int $idle,
int $queue_depth,
bool $running,
int $size,
int $total_completed,
int $total_scheduled,
) {
$this->busy = $busy;
$this->idle = $idle;
$this->queue_depth = $queue_depth;
$this->running = $running;
$this->size = $size;
$this->total_completed = $total_completed;
$this->total_scheduled = $total_scheduled;
}