function DatabaseQueue::deleteQueue

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::deleteQueue()
  2. 8.9.x core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::deleteQueue()
  3. 10 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::deleteQueue()

Overrides QueueInterface::deleteQueue

File

core/lib/Drupal/Core/Queue/DatabaseQueue.php, line 227

Class

DatabaseQueue
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

public function deleteQueue() {
    try {
        $this->connection
            ->delete(static::TABLE_NAME)
            ->condition('name', $this->name)
            ->execute();
    } catch (\Exception $e) {
        $this->catchException($e);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.