Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 4 |
QueueDatabaseFactory | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 4 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
get | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Queue\QueueDatabaseFactory. | |
*/ | |
namespace Drupal\Core\Queue; | |
use Drupal\Core\Database\Connection; | |
/** | |
* Defines the key/value store factory for the database backend. | |
*/ | |
class QueueDatabaseFactory { | |
/** | |
* The database connection. | |
* | |
* @var \Drupal\Core\Database\Connection $connection | |
*/ | |
protected $connection; | |
/** | |
* Constructs this factory object. | |
* | |
* @param \Drupal\Core\Database\Connection $connection | |
* The Connection object containing the key-value tables. | |
*/ | |
function __construct(Connection $connection) { | |
$this->connection = $connection; | |
} | |
/** | |
* Constructs a new queue object for a given name. | |
* | |
* @param string $name | |
* The name of the collection holding key and value pairs. | |
* | |
* @return \Drupal\Core\Queue\DatabaseQueue | |
* A key/value store implementation for the given $collection. | |
*/ | |
public function get($name) { | |
return new DatabaseQueue($name, $this->connection); | |
} | |
} |