function QueueDatabaseFactory::__construct

Constructs this factory object.

Parameters

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

File

drupal/core/lib/Drupal/Core/Queue/QueueDatabaseFactory.php, line 30
Contains \Drupal\Core\Queue\QueueDatabaseFactory.

Class

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

Namespace

Drupal\Core\Queue

Code

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