Google\Cloud\Speech\Operation::exists PHP Méthode

exists() public méthode

Example: if ($operation->exists()) { echo "The operation exists."; }
public exists ( array $options = [] ) : boolean
$options array [optional] Configuration Options.
Résultat boolean
    public function exists(array $options = [])
    {
        try {
            $this->info($options);
        } catch (NotFoundException $ex) {
            return false;
        }
        return true;
    }