Google\Cloud\BigQuery\Job::exists PHP Метод

exists() публичный Метод

Example: echo $job->exists();
public exists ( ) : boolean
Результат boolean
    public function exists()
    {
        try {
            $this->connection->getJob($this->identity + ['fields' => 'jobReference']);
        } catch (NotFoundException $ex) {
            return false;
        }
        return true;
    }