You are here

public function DatabaseQueue::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::__construct()

Constructs a \Drupal\Core\Queue\DatabaseQueue object.

Parameters

string $name: The name of the queue.

\Drupal\Core\Database\Connection $connection: The Connection object containing the key-value tables.

File

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

Class

DatabaseQueue
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

public function __construct($name, Connection $connection) {
  $this->name = $name;
  $this->connection = $connection;
}