You are here

public function CachedManagementApiEdgeEntityControllerProxy::loadAll in Apigee Edge 8

Loads _all_ entities from Apigee Edge.

All entities, even on pagination enabled endpoints, this method must return all entities even it requires multiple API calls.

Return value

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

Overrides EdgeEntityControllerInterface::loadAll

File

src/Entity/Controller/CachedManagementApiEdgeEntityControllerProxy.php, line 90

Class

CachedManagementApiEdgeEntityControllerProxy
Management API specific cached entity controller implementation.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function loadAll() : array {
  return $this->proxiedController
    ->loadAll();
}