GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Queue/ |
Upload File : |
<?php 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. */ public 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); } }