You are here

public function QueueDatabaseFactory::__construct in Drupal 9

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

Constructs this factory object.

Parameters

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

File

core/lib/Drupal/Core/Queue/QueueDatabaseFactory.php, line 25

Class

QueueDatabaseFactory
Defines the key/value store factory for the database backend.

Namespace

Drupal\Core\Queue

Code

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