You are here

interface MemoryCacheFactoryInterface in Apigee Edge 8

Base definition of the memory cache factory service.

Hierarchy

Expanded class hierarchy of MemoryCacheFactoryInterface

All classes that implement MemoryCacheFactoryInterface

4 files declare their use of MemoryCacheFactoryInterface
CompanyMembershipObjectCache.php in modules/apigee_edge_teams/src/CompanyMembershipObjectCache.php
DeveloperCache.php in src/Entity/Controller/Cache/DeveloperCache.php
DeveloperCompaniesCache.php in src/Entity/DeveloperCompaniesCache.php
EntityCache.php in src/Entity/Controller/Cache/EntityCache.php

File

src/MemoryCacheFactoryInterface.php, line 28

Namespace

Drupal\apigee_edge
View source
interface MemoryCacheFactoryInterface {

  /**
   * Gets a memory cache backend class for a given cache bin.
   *
   * @param string $bin
   *   The cache bin for which a cache backend object should be returned.
   *
   * @return \Drupal\Core\Cache\MemoryCache\MemoryCacheInterface
   *   The memory cache backend object associated with the specified bin.
   */
  public function get($bin) : MemoryCacheInterface;

}

Members

Namesort descending Modifiers Type Description Overrides
MemoryCacheFactoryInterface::get public function Gets a memory cache backend class for a given cache bin. 1