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; /** * Static queue implementation. * * This allows "undelayed" variants of processes relying on the Queue * interface. The queue data resides in memory. It should only be used for * items that will be queued and dequeued within a given page request. * * @ingroup queue */ class Memory implements QueueInterface { /** * The queue data. * * @var array */ protected $queue; /** * Counter for item ids. * * @var int */ protected $idSequence; /** * Constructs a Memory object. * * @param string $name * An arbitrary string. The name of the queue to work with. */ public function __construct($name) { $this->queue = []; $this->idSequence = 0; } /** * {@inheritdoc} */ public function createItem($data) { $item = new \stdClass(); $item->item_id = $this->idSequence++; $item->data = $data; $item->created = time(); $item->expire = 0; $this->queue[$item->item_id] = $item; return $item->item_id; } /** * {@inheritdoc} */ public function numberOfItems() { return count($this->queue); } /** * {@inheritdoc} */ public function claimItem($lease_time = 30) { foreach ($this->queue as $key => $item) { if ($item->expire == 0) { $item->expire = time() + $lease_time; $this->queue[$key] = $item; return $item; } } return FALSE; } /** * {@inheritdoc} */ public function deleteItem($item) { unset($this->queue[$item->item_id]); } /** * {@inheritdoc} */ public function releaseItem($item) { if (isset($this->queue[$item->item_id]) && $this->queue[$item->item_id]->expire != 0) { $this->queue[$item->item_id]->expire = 0; return TRUE; } return FALSE; } /** * {@inheritdoc} */ public function createQueue() { // Nothing needed here. } /** * {@inheritdoc} */ public function deleteQueue() { $this->queue = []; $this->idSequence = 0; } }