You are here

public function SystemSetQueue::deleteQueue in Queue Unique 7

Same name and namespace in other branches
  1. 7.2 src/Queue/SystemSetQueue.php \Drupal\queue_unique\Queue\SystemSetQueue::deleteQueue()

File

src/Queue/SystemSetQueue.php, line 126
Contains \Drupal\queue_unique\Queue\SystemSetQueue

Class

SystemSetQueue

Namespace

Drupal\queue_unique\Queue

Code

public function deleteQueue() {
  db_delete(static::TABLE_NAME)
    ->condition('name', $this->name)
    ->execute();
}