You are here

interface EntityCacheAwareControllerInterface in Apigee Edge 8

Base interface for those controllers that uses an entity cache.

Hierarchy

Expanded class hierarchy of EntityCacheAwareControllerInterface

All classes that implement EntityCacheAwareControllerInterface

7 files declare their use of EntityCacheAwareControllerInterface
ApiProductStorage.php in src/Entity/Storage/ApiProductStorage.php
AppStorage.php in src/Entity/Storage/AppStorage.php
Developer.php in src/Entity/Developer.php
DeveloperStorage.php in src/Entity/Storage/DeveloperStorage.php
EdgeEntityStorageBase.php in src/Entity/Storage/EdgeEntityStorageBase.php

... See full list

File

src/Entity/Controller/EntityCacheAwareControllerInterface.php, line 28

Namespace

Drupal\apigee_edge\Entity\Controller
View source
interface EntityCacheAwareControllerInterface {

  /**
   * Returns the entity cache used by the controller.
   *
   * @return \Drupal\apigee_edge\Entity\Controller\Cache\EntityCacheInterface
   *   The entity cache.
   */
  public function entityCache() : EntityCacheInterface;

}

Members

Namesort descending Modifiers Type Description Overrides
EntityCacheAwareControllerInterface::entityCache public function Returns the entity cache used by the controller. 2