class MemoryCounterBackendFactory

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php \Drupal\Core\Cache\MemoryCounterBackendFactory
  2. 11.x core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php \Drupal\Core\Cache\MemoryCounterBackendFactory

Hierarchy

Expanded class hierarchy of MemoryCounterBackendFactory

1 file declares its use of MemoryCounterBackendFactory
MigrateSqlSourceTestBase.php in core/modules/migrate/tests/src/Kernel/MigrateSqlSourceTestBase.php

File

core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php, line 7

Namespace

Drupal\Core\Cache
View source
class MemoryCounterBackendFactory implements CacheFactoryInterface {
    
    /**
     * Instantiated memory cache bins.
     *
     * @var \Drupal\Core\Cache\MemoryBackend[]
     */
    protected $bins = [];
    
    /**
     * Constructs a MemoryCounterBackendFactory object.
     *
     * @param \Drupal\Component\Datetime\TimeInterface|null $time
     *   The time service.
     */
    public function __construct(?TimeInterface $time = NULL) {
        if (!$time) {
            @trigger_error('Calling ' . __METHOD__ . '() without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3387233', E_USER_DEPRECATED);
            $this->time = \Drupal::service(TimeInterface::class);
        }
    }
    
    /**
     * {@inheritdoc}
     */
    public function get($bin) {
        if (!isset($this->bins[$bin])) {
            $this->bins[$bin] = new MemoryCounterBackend($this->time);
        }
        return $this->bins[$bin];
    }

}

Members

Title Sort descending Modifiers Object type Summary
MemoryCounterBackendFactory::$bins protected property Instantiated memory cache bins.
MemoryCounterBackendFactory::get public function
MemoryCounterBackendFactory::__construct public function Constructs a MemoryCounterBackendFactory object.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.