MemoryCounterBackendFactory.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php
  2. 10 core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php

Namespace

Drupal\Core\Cache

File

core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php

View source
<?php

namespace Drupal\Core\Cache;

use Drupal\Component\Datetime\TimeInterface;

/**
 * Defines the memory counter backend factory.
 */
class MemoryCounterBackendFactory implements CacheFactoryInterface {
  
  /**
   * Instantiated memory cache bins.
   *
   * @var \Drupal\Core\Cache\MemoryBackend[]
   */
  protected $bins = [];
  
  /**
   * Constructs a MemoryCounterBackendFactory object.
   *
   * @param \Drupal\Component\Datetime\TimeInterface $time
   *   The time service.
   */
  public function __construct(protected TimeInterface $time) {
  }
  
  /**
   * {@inheritdoc}
   */
  public function get($bin) {
    if (!isset($this->bins[$bin])) {
      $this->bins[$bin] = new MemoryCounterBackend($this->time);
    }
    return $this->bins[$bin];
  }

}

Classes

Title Deprecated Summary
MemoryCounterBackendFactory Defines the memory counter backend factory.

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