W3cubDocs

/Drupal 8

public function DatabaseQueue::createQueue

public DatabaseQueue::createQueue()

Creates a queue.

Called during installation and should be used to perform any necessary initialization operations. This should not be confused with the constructor for these objects, which is called every time an object is instantiated to operate on a queue. This operation is only needed the first time a given queue is going to be initialized (for example, to make a new database table or directory to hold tasks for the queue -- it depends on the queue implementation if this is necessary at all).

Overrides QueueInterface::createQueue

File

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

Class

DatabaseQueue
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

public function createQueue() {
  // All tasks are stored in a single database table (which is created on
  // demand) so there is nothing we need to do to create a new queue.
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Queue!DatabaseQueue.php/function/DatabaseQueue::createQueue/8.1.x