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;
    }