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