You are here

public function EntityCacheInterface::getEntities in Apigee Edge 8

Returns entities from the cache.

Parameters

array $ids: Array of entity ids. If an empty array is passed all currently stored gets returned.

Return value

\Apigee\Edge\Entity\EntityInterface[] Array of entities.

2 methods override EntityCacheInterface::getEntities()
AppCacheByOwner::getEntities in src/Entity/Controller/Cache/AppCacheByOwner.php
Returns entities from the cache.
EntityCache::getEntities in src/Entity/Controller/Cache/EntityCache.php
Returns entities from the cache.

File

src/Entity/Controller/Cache/EntityCacheInterface.php, line 58

Class

EntityCacheInterface
Base definition of the entity cache used by controllers.

Namespace

Drupal\apigee_edge\Entity\Controller\Cache

Code

public function getEntities(array $ids = []) : array;