You are here

public function DatabaseQueue::createQueue in Purge 8.3

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 DatabaseQueue::createQueue

File

src/Plugin/Purge/Queue/DatabaseQueue.php, line 265

Class

DatabaseQueue
A QueueInterface compliant database backed queue.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function createQueue() {

  // All tasks are stored in a single database table (which is created when
  // this class instantiates) so there is nothing we need to do to create
  // a new queue.
}